- Clone the project
git clone https://github.com/s1lvax/route
- Install dependencies
- Run a Postgres instance (I recommend using Docker)
docker run --name your_postgres_container -e POSTGRES_USER=your_username -e POSTGRES_PASSWORD=your_password -e POSTGRES_DB=your_database -p 5432:5432 -d postgres
- Update the
example.env
to .env
and fill in your data
- Push the databse schema using Prisma
- Start the dev server
- Develop the change using a separate branch, either
bugfix/name
or feature/name
- Push your changes and open a Pull Request with details about your changes