Fastify - Prisma Boilerplate

How to install

yarn

How to run in local

# Create .env file
cp .env.example .env

# Start postgresql
docker-compose up -d

# Run db migrations
yarn migrate

# Start API server
yarn dev