The ultimate bike reservation app.
npm i -g yarn
- Start PostgreSQL database in root directory:
docker compose up -d
- Install frontend and backend dependencies
yarn install
- Start frontend and backend projects
yarn start
If default manager account does not exist, then a default manager account will be created from .env
file.
.env.development
Email: [email protected]
Password: a
We use a few tools to enforce a common code styleguide and test our code.
To test code run:
yarn test
To lint code with Eslint, run:
yarn lint
Project uses Prettier for formatting code. Enable Prettier on your IDE.
To format code run:
yarn pretty