Make sure to install the dependencies:
pnpm i
Start the development server on http://localhost:3000
:
pnpm run dev
Build the application for production:
pnpm run build
Locally preview production build:
pnpm run preview
Both 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