Song lyric presentation program
https://transparency-sing.herokuapp.com/
- https://postgresapp.com/
- Create a database called
postgres - Add the schema below
- Create a database called
brew install nodenpm install -g npmnpm install -g gulp-cli
To build and launch a development server (with automatic server reload):
npm installgulp cleangulp serve
To update package-lock.json:
rm -rf node_modules package-lock.jsonnpm install
tenant
- tenant_id
- name
song
- song_id
- tenant_id
- title
- lyrics
- songwriters
- artists
Merges to master on GitHub are automatically tested and deployed to Heroku. Download the Heroku CLI here: https://devcenter.heroku.com/articles/heroku-cli
To test the current Heroku deployment, you can build and launch a production server locally:
npm installheroku local
To build and run your local code in production mode:
gulp cleangulp buildPORT=5000 DATABASE_URL="postgres://localhost/postgres" node dist/server/server.bundle.js(Set environment variables and run the production script)