that home inventory thing
 
 
 
 
 
Go to file
Lauren Liberda 550f6cbce3 gitlab ci workflow 2021-07-09 00:40:40 +02:00
.vscode initial commit 2021-07-08 19:40:14 +02:00
migration brand new migrations that should work well 2021-07-09 00:00:15 +02:00
src item parents 2021-07-08 23:58:07 +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
.gitlab-ci.yml gitlab ci workflow 2021-07-09 00:40:40 +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 fix typeorm things 2021-07-08 23:57:12 +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 fix ts builds 2021-07-08 23:56:51 +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.