skmedia / appventory-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AppVentory API - backend for AppVentory.

AppVentory is a tool to manage applications.

Built with nestjs and prisma.

Installation

Add keys Instal mkcert https://github.com/FiloSottile/mkcert

mkcert -install
mkcert localhost

Install dependencies

$ npm install

Running the app

Launch the database

docker-compose up -d

Seed the database

npx prisma generate && npx prisma db push --force-reset && npx prisma db seed
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Open your browser: https://localhost:3000

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

About


Languages

Language:TypeScript 99.2%Language:JavaScript 0.6%Language:Handlebars 0.2%Language:Procfile 0.0%