Permalink
Please sign in to comment.
Showing
with
14 additions
and 20 deletions.
- +10 −0 .travis.yml
- +3 −0 .travis/deploy.sh
- +1 −4 Readme.md
- +0 −16 wercker.yml
10
.travis.yml
| @@ -0,0 +1,10 @@ | ||
| +language: node_js | ||
| +node_js: | ||
| + - "6" | ||
| +dist: trusty | ||
| +sudo: false | ||
| +deploy: | ||
| + provider: script | ||
| + script: .travis/deploy.sh | ||
| + on: | ||
| + branch: master |
| @@ -0,0 +1,3 @@ | ||
| + | ||
| +git remote add dokku dokku@$APP_HOSTNAME:$APP | ||
| +git push --force dokku HEAD:master |
16
wercker.yml
| @@ -1,16 +0,0 @@ | ||
| -box: node | ||
| -build: | ||
| - steps: | ||
| - - npm-install | ||
| - - npm-test | ||
| -deploy: | ||
| - steps: | ||
| - - add-to-known_hosts: | ||
| - hostname: $HOSTNAME | ||
| - - add-ssh-key: | ||
| - keyname: SSH | ||
| - - script: | ||
| - name: Push to dokku | ||
| - code: | | ||
| - git remote add dokku dokku@$HOSTNAME:$APP | ||
| - git push --force dokku HEAD:master |
0 comments on commit
0ef7e05