that home inventory thing
 
 
 
 
 
Go to file
Lauren Liberda 226cabfc05 initial commit 2021-07-08 19:40:14 +02:00
.vscode initial commit 2021-07-08 19:40:14 +02:00
migration initial commit 2021-07-08 19:40:14 +02:00
src initial commit 2021-07-08 19:40:14 +02:00
test initial commit 2021-07-08 19:40:14 +02:00
.env.sample initial commit 2021-07-08 19:40:14 +02:00
.eslintrc.js initial commit 2021-07-08 19:40:14 +02:00
.gitignore initial commit 2021-07-08 19:40:14 +02:00
.prettierrc initial commit 2021-07-08 19:40:14 +02:00
Dockerfile initial commit 2021-07-08 19:40:14 +02:00
README.md initial commit 2021-07-08 19:40:14 +02:00
docker-compose.yml initial commit 2021-07-08 19:40:14 +02:00
nest-cli.json initial commit 2021-07-08 19:40:14 +02:00
ormconfig.js initial commit 2021-07-08 19:40:14 +02:00
package.json initial commit 2021-07-08 19:40:14 +02:00
tsconfig.build.json initial commit 2021-07-08 19:40:14 +02:00
tsconfig.json initial commit 2021-07-08 19:40:14 +02:00
yarn.lock initial commit 2021-07-08 19:40:14 +02:00

README.md

Metropolis

Installation

$ yarn

# edit this file to match your environment
$ cp .env.sample .env

Running the app

# postgres - required by the app
$ docker-compose up -d postgres
# migrations - required to apply before the app runs first time,
# and after new migrations appear
$ yarn migration:run

# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod

Test

No automatic tests, use cURL or Insomnia.