that home inventory thing
 
 
 
 
 
Go to file
Lauren Liberda 9948e43fa4 fe: item creating 2021-08-04 20:13:18 +02:00
.vscode initial commit 2021-07-08 19:40:14 +02:00
frontend fe: item creating 2021-08-04 20:13:18 +02:00
migration fix migration 2021-07-24 16:34:39 +02:00
scripts frontend: initial 2021-07-25 18:01:11 +02:00
src sort item list by ids 2021-08-01 22:39:36 +02:00
test initial commit 2021-07-08 19:40:14 +02:00
.dockerignore fix docker builds (now with frontend!) 2021-07-29 02:32:17 +02:00
.env.sample initial commit 2021-07-08 19:40:14 +02:00
.eslintignore frontend: initial 2021-07-25 18:01:11 +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 (now with frontend!) 2021-07-29 02:32:17 +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
gql-codegen.yml frontend: initial 2021-07-25 18:01:11 +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 fix docker builds (now with frontend!) 2021-07-29 02:32:17 +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
webpack.config.js frontend: initial 2021-07-25 18:01:11 +02:00
yarn.lock frontend: initial 2021-07-25 18:01:11 +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.