- setup qa and production in CircleCI
- PORT - a port which the app listens on
- DATABASE_URL - the url of the database. Now we use PostgreSQL.
Run node ./src/app.js
The app listens on 0.0.0.0 ip.
To create a database you need
yarn db:create
- to create the databaseyarn db:migrate
- to create tablesyarn db:seed
- to fill the table by test data