Skip to content

Latest commit

 

History

History
executable file
·
46 lines (27 loc) · 1.06 KB

README.md

File metadata and controls

executable file
·
46 lines (27 loc) · 1.06 KB

The Creem

A recruitment application for the hospitality industry, better connecting staff to employers.

Running the app

note: Postgres will need to be running.

bower install

npm install

rake db:create # first time only

rake db:migrate

foreman start -f Procfile.dev

Development

Follow conventions demonstrated in this Angular Styleguide

Follow conventions demonstrated in this Ruby Styleguide

Deployment to Heroku

Heroku-cli must be configured:

heroku login
git remote add heroku [email protected]:<repository>.git

The NodeJs buildpack is required.

heroku buildpacks:add --index 1 https://github.com/heroku/heroku-buildpack-nodejs

In the dynos the gulp one should be on ON

The environment vars required are the ones for the database

The postgres add-on is needed

To push:

git push heroku <branch-name>:master