Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.12 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.12 KB

pw-planner

Setup

Make sure to install the dependencies:

pnpm i

Development Server

Start the development server on http://localhost:3000:

pnpm run dev

Production

Build the application for production:

pnpm run build

Locally preview production build:

pnpm run preview

Development

Stack

Both frontend and backend part of the application is using the Nuxt 3 meta-framework. Look at the Nuxt 3 documentation to learn more.

Git

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/

Deployment

TBD