In the root of your directory, create a .env file with the following properties
DB_USERNAME='yourpgusername' // the username you created for this db
DB_PASSWORD='yourpgpassword' // the password you created for this user
DB_HOST="localhost" // the domain the db is running on
DB_PORT=5432 // the port the db runs on
DB_SYNC=true // this tells the db to create tables and run migrations
npm install
npx sequelize db:create
npx sequelize db:migrate
npm run dev
- Branch from development
- Work on your branch
- Before issuing Pull Request, rebase against master to pickup changes
- Issue pull request from your branch to development, with tests
- After Code Review and approval, merge into master
- Add your name to Contributers section below on README