- Node with yarn;
- docker-compose.
- Copy the .env.example file to the .env
cp .env.example .env
- Fill variables in env file with your values
- Install project dependencies
yarn
- Run the database with Docker
docker-compose up -d --build
- Run migrations
yarn prisma migrate dev
- Start the project
yarn dev