Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 519 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 519 Bytes

Blog made with Next.js and Prisma ORM to DevHack Community 📰

Requirements

  • Node with yarn;
  • docker-compose.

Installation (development environment)

- 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