- Node.js v18.13.0
- yarn
- Prettier
- ESLint
Run yarn install
in root project directory to download packages.
Available scripts:
Runs the app in the development mode on http://localhost:5173/.
- The page will reload on code edits.
- Linter errors will be printed in the console.
Same as yarn dev
, but exposes the app on the local network.
Builds the app for production in the dist
folder.
Runs the app in the production mode on http://localhost:3000/.
main
branch is for the production running version,develop
is a development branch,- All tasks related branches must base on the
develop
and should have a name that indicates the task. - Tasks related branches can be merged to the
develop
only after code review is made by another developer.
- On every merge request to
main
anddevelop
. - On every push to
main
anddevelop
.
- From
develop
to GitHub Pages on every push todevelop
. - From
main
toproduction
on every push tomain
.