This is the api for STASH.
(https://documenter.getpostman.com/view/5109644/TVmHDexk)
createdb -U {username} {database name}
Run Migrations: npm run migrate
psql -U {username} -d {database name} -f {path to seed file}
Start the application npm start
Start nodemon for the application npm run dev
Run the tests npm test
When your new project is ready for deployment, add a new Heroku application with heroku create
. This will make a new git remote called "heroku" and you can then npm run deploy
which will push to this remote's master branch.