add missing double quote

Can Edremitoglu 2015-12-02 14:58:28 +01:00
parent f59c3346ef
commit 82cbd374ae

@ -17,7 +17,7 @@ Installing Tracks 2.0 or newer on Heroku is fairly simple, here are the steps to
* Create a file called `Procfile` with a single line that reads `web: bundle exec rails server thin -p $PORT -e $RACK_ENV`
* Run `bundle install`
* In the `.gitignore` file, comment out `config/site.yml` by putting a hash (`#`) at the beginning of the line.
* Add the created `site.yml` and `Gemfile.lock` files to the git repository with `git add config/site.yml Gemfile.lock` and commit everything with `git commit -a -m "Updated/add the site information and bundle additions for Heroku`
* Add the created `site.yml` and `Gemfile.lock` files to the git repository with `git add config/site.yml Gemfile.lock` and commit everything with `git commit -a -m "Updated/add the site information and bundle additions for Heroku"`
* Create a Heroku app on the Cedar stack with `heroku create {NAME} --stack cedar-14` where `{NAME}` is something you care about. Or leave it off and Heroku will pick one for you.
* Run `heroku config:add BUNDLE_WITHOUT="development:test:selenium"` so that only gems needed for production are installed on Heroku
* Push the commit with `git push heroku master`