that home inventory thing
 
 
 
 
 
Go to file
Lauren Liberda e41d6cf8fd fix item ancestors 2021-07-21 02:44:14 +02:00
.vscode initial commit 2021-07-08 19:40:14 +02:00
migration assigning ids on item creation 2021-07-17 23:03:31 +02:00
src fix item ancestors 2021-07-21 02:44: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
.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 closure table saves on item creation 2021-07-19 23:29:59 +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.