Getting Started with StartWerk

Follow these steps to set up your business in minutes

1

Purchase StartWerk

First, you will need to purchase StartWerk which will give you access to the Git repository.

View Pricing Plans
2

Clone & Install

git clone https://github.com/yourusername/startwerk.git
cd startwerk
npm install
3

Customize Your App

Replace the following files with your own:

  • Replace public/favicon.ico with your favicon
  • Add your logo as public/assets/logo.png

Update your app configuration in config.js:

// Update app name and description
const config = {
  appName: "Your App Name",
  appDescription: "Your app description",
  // ... other config
};

To change the font, update app/globals.css. Find the body selector and modify the font-family:

body {
  font-family: "Your Font", sans-serif;
  // ... other styles
}
4

Configure Environment

Create a .env file based on the example below

5

Start Development

npm run dev

Visit http://localhost:3000 to see your application

6

Configure Database

You will notice that the products section will not display any products as we first have to configure the database. Lets go to the Database Setup section.