Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 613 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 613 Bytes

Snapvox API

Snapvox API is built using NestJS. To start using it, you need to install the dependencies first:

npm install

Database

Snapvox API uses PostgreSQL as its database. To run the database, you can use Docker:

docker-compose up -d

Copy the template .env.template to a new .env

cp .env.template .env

Migrating SQL schema

Snapvox API uses Prisma to manage the database schema. To migrate the schema, you can use the following command:

# development
npx prisma migrate dev

Running the app

# development
npm run start:dev