Install the dependencies:
yarn install
Run the backend development server:
yarn be:dev
Run the frontend development server:
yarn dev
Open http://localhost:8080 with your browser to see the page.
If you like to try the production build, run:
yarn build
And then:
yarn preview
be:dev
: runs the backend server in development modebe:test
: runs testsbe:test:coverage
: runs tests with coveragebe:test:watch
: runs tests in watch modebe:lint
: runs the linter for the backend source codebe:format
: runs prettier to format the backend source codedev
: runs your application onlocalhost:3000
build
: creates the production build versionpreview
: starts a simple server with the build production codetest
: runs vitest in watch modetest:coverage
: runs vitest returning coverage tabletest:ci
: runs vitest once in CIlint
: runs the linter in all components and pagesformat
: runs prettier to format all components and pagestypecheck
: runs the type checker in all components and pagesstorybook
: runs storybook onlocalhost:6006
storybook:build
: create the build version of storybookgenerate
: runs plop to generate component files
Boilerplate made with