Startuplanding
WelcomeGetting StartedAvailable ScriptsProject StructureMail IntegrationDeployment
SEO and Analytics

Getting Started

After downloading and unzipping the project go to the project folder run:

cd your_project_name

Inside the project, you can run some built-in commands: to start development run:

yarn dev
# or
npm run dev

Open dev server to view it in the browser. The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.

to build the project run:

yarn build
# or
npm run build

to serve run:

yarn build
yarn start
# or
npm run build
npm run start