-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #240 from consuldemocracy/release_2.2.0
Install Consul Democracy version 2.2.0
- Loading branch information
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,7 @@ Setup locally for your [development environment](https://docs.consuldemocracy.or | |
Checkout the latest stable version: | ||
|
||
``` | ||
git checkout origin/2.1.1 -b stable | ||
git checkout origin/2.2.0 -b stable | ||
``` | ||
|
||
Create your `deploy-secrets.yml` | ||
|
@@ -207,13 +207,13 @@ Using https instead of http is an important security configuration. Before you b | |
|
||
Once you have that setup we need to configure the Installer to use your domain in the application. | ||
|
||
First, uncomment the `domain` variable in the [configuration file](https://github.com/consuldemocracy/installer/blob/2.1.1/group_vars/all) and update it with your domain name: | ||
First, uncomment the `domain` variable in the [configuration file](https://github.com/consuldemocracy/installer/blob/2.2.0/group_vars/all) and update it with your domain name: | ||
|
||
``` | ||
#domain: "your_domain.com" | ||
``` | ||
|
||
Next, uncomment the `letsencrypt_email` variable in the [configuration file](https://github.com/consuldemocracy/installer/blob/2.1.1/group_vars/all) and update it with a valid email address: | ||
Next, uncomment the `letsencrypt_email` variable in the [configuration file](https://github.com/consuldemocracy/installer/blob/2.2.0/group_vars/all) and update it with a valid email address: | ||
|
||
``` | ||
#letsencrypt_email: "[email protected]" | ||
|
@@ -260,7 +260,7 @@ If you are on Ubuntu and would like to use its default `sudo` group instead of ` | |
deploy_group: sudo | ||
``` | ||
|
||
There are many more variables available check them out [here]((https://github.com/consuldemocracy/installer/blob/2.1.1/group_vars/all)) | ||
There are many more variables available check them out [here]((https://github.com/consuldemocracy/installer/blob/2.2.0/group_vars/all)) | ||
|
||
## Other deployment options | ||
|
||
|
@@ -290,7 +290,7 @@ If you do not have `root` access, you will need your system administrator to gra | |
|
||
## Using a different user than deploy | ||
|
||
Change the variable [deploy_user](https://github.com/consuldemocracy/installer/blob/2.1.1/group_vars/all#L12) to the username you would like to use. | ||
Change the variable [deploy_user](https://github.com/consuldemocracy/installer/blob/2.2.0/group_vars/all#L12) to the username you would like to use. | ||
|
||
## Ansible Documentation | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
- name: Start DelayedJobs queue | ||
shell: "{{ rvm_command }} && RAILS_ENV={{ env }} EXECJS_RUNTIME=Disabled bin/delayed_job -m -n 2 restart" | ||
shell: "{{ rvm_command }} && RAILS_ENV={{ env }} EXECJS_RUNTIME=Disabled bundle exec bin/delayed_job -m -n 2 restart" | ||
args: | ||
executable: /bin/bash | ||
chdir: "{{ release_dir }}" |