-
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 #219 from consuldemocracy/name_change
Update project URLs
- Loading branch information
Showing
5 changed files
with
16 additions
and
16 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ permissions: | |
jobs: | ||
assign-author: | ||
name: Auto-assign pull request author | ||
if: github.repository_owner == 'consul' | ||
if: github.repository_owner == 'consuldemocracy' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: toshimaru/[email protected] |
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 |
---|---|---|
|
@@ -8,19 +8,19 @@ env: | |
jobs: | ||
assign_one_project: | ||
name: Add new pull requests to the kanban | ||
if: github.repository_owner == 'consul' | ||
if: github.repository_owner == 'consuldemocracy' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Assign new pull requests to the reviewing column | ||
uses: srggrs/[email protected] | ||
if: github.event.pull_request.draft == false | ||
with: | ||
project: "https://github.com/orgs/consul/projects/1" | ||
project: "https://github.com/orgs/consuldemocracy/projects/1" | ||
column_name: "Reviewing" | ||
|
||
- name: Assign new draft pull requests to the doing column | ||
uses: srggrs/[email protected] | ||
if: github.event.pull_request.draft == true | ||
with: | ||
project: "https://github.com/orgs/consul/projects/1" | ||
project: "https://github.com/orgs/consuldemocracy/projects/1" | ||
column_name: "Doing" |
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,6 +1,6 @@ | ||
# CONSUL DEMOCRACY Installer ![Build status](https://github.com/consul/installer/workflows/tests/badge.svg) | ||
# CONSUL DEMOCRACY Installer ![Build status](https://github.com/consuldemocracy/installer/workflows/tests/badge.svg) | ||
|
||
[CONSUL DEMOCRACY](https://github.com/consul/consul) installer for production environments | ||
[CONSUL DEMOCRACY](https://github.com/consuldemocracy/consuldemocracy) installer for production environments | ||
|
||
Using [Ansible](http://docs.ansible.com/), it will install and configure the following: | ||
|
||
|
@@ -53,7 +53,7 @@ The following commands must be executed in your local machine | |
Get the Ansible Playbook | ||
|
||
``` | ||
git clone https://github.com/consul/installer | ||
git clone https://github.com/consuldemocracy/installer | ||
cd installer | ||
``` | ||
|
||
|
@@ -98,7 +98,7 @@ To restart the server and deploy new code to the server we have to configure Cap | |
|
||
Create your [fork](https://help.github.com/articles/fork-a-repo/) | ||
|
||
Setup locally for your [development environment](https://docs.consulproject.org/docs/english-documentation/introduction/local_installation) | ||
Setup locally for your [development environment](https://docs.consuldemocracy.org/docs/english-documentation/introduction/local_installation) | ||
|
||
Checkout the latest stable version: | ||
|
||
|
@@ -125,7 +125,7 @@ production: | |
Update your `repo_url` in `deploy.rb` | ||
|
||
``` | ||
set :repo_url, 'https://github.com/your_github_username/consul.git' | ||
set :repo_url, 'https://github.com/your_github_username/consuldemocracy.git' | ||
``` | ||
|
||
Make a change in a view and push it your fork in Github | ||
|
@@ -169,7 +169,7 @@ You want to change this block of code for your production environment and use yo | |
:enable_starttls_auto: true | ||
``` | ||
|
||
And restart the server running this command from your local CONSUL DEMOCRACY installation (see [Deploys with Capistrano](https://github.com/consul/installer#deploys-with-capistrano) for details). | ||
And restart the server running this command from your local CONSUL DEMOCRACY installation (see [Deploys with Capistrano](https://github.com/consuldemocracy/installer#deploys-with-capistrano) for details). | ||
|
||
``` | ||
cap production deploy:restart | ||
|
@@ -206,13 +206,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/consul/installer/blob/1.5.0/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/1.5.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/consul/installer/blob/1.5.0/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/1.5.0/group_vars/all) and update it with a valid email address: | ||
|
||
``` | ||
#letsencrypt_email: "[email protected]" | ||
|
@@ -259,7 +259,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/consul/installer/blob/1.5.0/group_vars/all)) | ||
There are many more variables available check them out [here]((https://github.com/consuldemocracy/installer/blob/1.5.0/group_vars/all)) | ||
|
||
## Other deployment options | ||
|
||
|
@@ -289,7 +289,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/consul/installer/blob/1.5.0/group_vars/all#L13) to the username you would like to use. | ||
Change the variable [deploy_user](https://github.com/consuldemocracy/installer/blob/1.5.0/group_vars/all#L13) 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