Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Commit

Permalink
fix(deploy): fix deployment rules
Browse files Browse the repository at this point in the history
  • Loading branch information
alxpez committed Apr 12, 2018
1 parent 32a42ad commit 6852b17
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,17 @@
"build": "cd client && npm run build",
"start": "cd server && npm run start",
"now-build": "npm run install:server",
"deploy:test": "npm run build && now -f -p",
"deploy:prod": "npm run build && now -f -p && now alias && now scale vuegg.now.sh 1"
"deploy": "npm run build && now -f -p"
},
"now": {
"alias": "vuegg",
"dotenv": true
"dotenv": true,
"scale": {
"sfo1": {
"min": 3,
"max": 3
}
}
},
"engines": {
"node": ">= 8.0.0",
Expand Down

0 comments on commit 6852b17

Please sign in to comment.