Environment file can be found in this gist. This file must be added to root of the project with the file name .dev.env
. Without this file, the project cannot be run.
You can follow installation steps from here.
$ psql postgres
$ create database blog
$ create user blog_user with encrypted password 'blog_pass'
$ grant all privileges on database blog to blog_user;
$ sudo -u postgres psql
$ create database blog
$ create user blog_user with encrypted password 'blog_pass'
$ grant all privileges on database blog to blog_user;
$ psql -U postgres
$ create database blog
$ create user blog_user with encrypted password 'blog_pass'
$ grant all privileges on database blog to blog_user;
To run in development mode:
$ npm run start:dev
To run in production mode:
$ npm run start:prod
To commit your changes, first run:
$ git add $FILES
Afterwards:
$ npm run commit
Fill the form, then:
$ git push origin master