mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
Merge branch 'master' of github.com:Luzifer/cloudkeys-go into development
This commit is contained in:
commit
553680c725
2 changed files with 21 additions and 16 deletions
|
@ -1,4 +1,9 @@
|
|||
|
||||
1.2.1 / 2015-07-31
|
||||
==================
|
||||
|
||||
* Fix: Restored old behavior of making all usernames lowercase
|
||||
|
||||
1.2.0 / 2015-07-30
|
||||
==================
|
||||
|
||||
|
|
32
README.md
32
README.md
|
@ -77,35 +77,35 @@ Example: redis+tcp://auth:mypass@redis.example.com:6379/5?prefix=cloudkeys::
|
|||
|
||||
1. Create a new CloudControl app
|
||||
|
||||
```
|
||||
# cctrlapp APP_NAME create custom --buildpack https://github.com/heroku/heroku-buildpack-go
|
||||
```
|
||||
```
|
||||
# cctrlapp APP_NAME create custom --buildpack https://github.com/heroku/heroku-buildpack-go
|
||||
```
|
||||
|
||||
2. Push the code to your app and deploy it
|
||||
|
||||
```
|
||||
# cctrlapp APP_NAME/default push
|
||||
# cctrlapp APP_NAME/default deploy
|
||||
```
|
||||
```
|
||||
# cctrlapp APP_NAME/default push
|
||||
# cctrlapp APP_NAME/default deploy
|
||||
```
|
||||
|
||||
3. Set your configuration variables (see env variables in usage section above)
|
||||
|
||||
```
|
||||
# cctrlapp app_name/dep_name config.add PARAM1=VALUE1 PARAM2=VALUE2 [...]
|
||||
```
|
||||
```
|
||||
# cctrlapp app_name/dep_name config.add PARAM1=VALUE1 PARAM2=VALUE2 [...]
|
||||
```
|
||||
|
||||
### Install on Heroku
|
||||
|
||||
1. Create a new Heroku app
|
||||
|
||||
```
|
||||
# heroku create -b https://github.com/heroku/heroku-buildpack-go
|
||||
```
|
||||
```
|
||||
# heroku create -b https://github.com/heroku/heroku-buildpack-go
|
||||
```
|
||||
|
||||
2. Push the code to your app
|
||||
|
||||
```
|
||||
# git push heroku master
|
||||
```
|
||||
```
|
||||
# git push heroku master
|
||||
```
|
||||
|
||||
3. Set your configuration variables in the Heroku apps dashboard (see env variables in usage section above)
|
||||
|
|
Loading…
Reference in a new issue