that home inventory thing
 
 
 
 
 
Go to file
Lauren Liberda 948396662b fix item creating with ean13 parent codes 2021-07-24 17:01:11 +02:00
.vscode initial commit 2021-07-08 19:40:14 +02:00
migration fix migration 2021-07-24 16:34:39 +02:00
src fix item creating with ean13 parent codes 2021-07-24 17:01:11 +02:00
test initial commit 2021-07-08 19:40:14 +02:00
.dockerignore fix docker builds 2021-07-24 16:15:07 +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: run unit tests 2021-07-21 02:48:20 +02:00
.prettierrc initial commit 2021-07-08 19:40:14 +02:00
Dockerfile fix docker builds 2021-07-24 16:15:07 +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.