Setup Heroku Deployment
This commit is contained in:
parent
bbb9c9bf72
commit
7b549d8fac
17
.travis.yml
17
.travis.yml
|
@ -1,11 +1,18 @@
|
||||||
---
|
|
||||||
before_script: bundle exec rake db:create db:schema:load
|
before_script: bundle exec rake db:create db:schema:load
|
||||||
bundler_args: --without assets:development:production
|
bundler_args: "--without assets:development:production"
|
||||||
cache: bundler
|
cache: bundler
|
||||||
language: ruby
|
language: ruby
|
||||||
rvm:
|
rvm:
|
||||||
- 2.2.0
|
- 2.2.0
|
||||||
script:
|
script:
|
||||||
- bundle exec rake
|
- bundle exec rake
|
||||||
- bundle exec rubocop --rails --fail-level=refactor
|
- bundle exec rubocop --rails --fail-level=refactor
|
||||||
sudo: false
|
sudo: false
|
||||||
|
deploy:
|
||||||
|
api_key:
|
||||||
|
secure: Ck6BzHMtPmYsBY/PbVnfIE6wnSe9s6fYDkvzYZtT/2qud4j4ElhV9el0ZbDhiTmix0PMwcCnN/Tpw5GbLVaHncDaJkvb6ucEBNyC7xECjNAFsxE6lu3yKATsY2hta7OQ8NwLlvAZpzCLMZQf9lzoSNbh2h/p+CwSNR7vOkw0FNc=
|
||||||
|
app: adopt-a-hydrant
|
||||||
|
on:
|
||||||
|
repo: codeforamerica/adopt-a-hydrant
|
||||||
|
provider: heroku
|
||||||
|
strategy: git
|
||||||
|
|
Loading…
Reference in New Issue