Make sure to install the dependencies:
pnpm iStart the development server on http://localhost:3000:
pnpm run devBuild the application for production:
pnpm run buildLocally preview production build:
pnpm run previewBoth frontend and backend part of the application is using the Nuxt 3 meta-framework. Look at the Nuxt 3 documentation to learn more.
Commits follow the conventional commits and gitmoji. The commitlint and husky keep on guard on following those rules.
While you're developing some new functionalities or bug fixes please follow the GitHub Flow and use those prefixes on branch names:
| Type of change | Prefix |
|---|---|
| Feature | feat/ |
| Bug fix | fix/ |
| CI/CD changes | ci/ |
| Other stuff | chore/ |
TBD