From 4088c6cf0671daa3f4243e699ddad869d120ef35 Mon Sep 17 00:00:00 2001 From: Mo Bitar Date: Sat, 17 Dec 2016 23:24:28 -0600 Subject: [PATCH] angular res --- .gitignore | 2 ++ bower.json | 4 ++-- config/cap.example.yml | 15 +++++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 config/cap.example.yml diff --git a/.gitignore b/.gitignore index a93f0b6c3..ef599204c 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ !/log/.keep /tmp +/config/cap.yml + /app/assets/templates/generated/ # Ignore bower components diff --git a/bower.json b/bower.json index bce3dbae9..4d60fb013 100644 --- a/bower.json +++ b/bower.json @@ -7,7 +7,7 @@ "vendor": { "name": "bower-rails generated vendor assets", "dependencies": { - "angular": "^1.5.9", + "angular": "^1.6.0", "angular-ui-router": "^0.2.18", "restangular": "^1.5.2", "ng-token-auth": "^0.0.29", @@ -19,7 +19,7 @@ "ng-dialog" : "0.6.4" }, "resolutions": { - "angular": "1.5.9" + "angular": "1.6.0" } } } diff --git a/config/cap.example.yml b/config/cap.example.yml new file mode 100644 index 000000000..f8b3183b2 --- /dev/null +++ b/config/cap.example.yml @@ -0,0 +1,15 @@ +default: &default + key_path: /path/to/key.pem + repo_url: https://github.com/neeto-project/neeto-web-client.git + user: ssh_username + +staging: + <<: *default + server: staging.yourdomain.com + branch: staging + deploy_to: ~/neeto-staging-client + +production: + <<: *default + server: yourdomain.com + deploy_to: ~/neeto-prod-client