Skip to content

Instantly share code, notes, and snippets.

@dustinfarris
Last active February 14, 2017 19:48

Revisions

  1. Dustin Farris revised this gist Jun 6, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion circle.yml
    Original file line number Diff line number Diff line change
    @@ -11,5 +11,5 @@ deployment:
    production:
    branch: master
    commands:
    - ember build --environment=production
    - EMBER_ENV=production npm run-script build
    - rsync -qaz --delete -e ssh dist/ [email protected]:/var/www/myproject
  2. Dustin Farris created this gist May 16, 2014.
    15 changes: 15 additions & 0 deletions circle.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    machine:
    node:
    version: 0.10.28
    dependencies:
    pre:
    - npm install -g bower
    override:
    - npm i
    - bower i
    deployment:
    production:
    branch: master
    commands:
    - ember build --environment=production
    - rsync -qaz --delete -e ssh dist/ [email protected]:/var/www/myproject