-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide support for personal and local settings
With this patch it will be possible to define customized settings using user defined files outside of the repository that will override the values from settings.yml. This can be useful to adapt sit-environment to the personal environment characteristics without having to modify the settings.yml file each time it's updated. There are two places were personal settings can be defined: - ~/.site/settings.yml This file can contain settings used by all sit-environments. This one overrides configurations from settings.yml. - ./local.yml (normally the root of the repo) This file can contain settings specific for this instance of the repo. This one overrides configurations from settings.yml and ~/.site/settings.yml. Signed-off-by: Xavi Hernandez <[email protected]>
- Loading branch information
1 parent
4323eae
commit 8ac38c9
Showing
4 changed files
with
64 additions
and
38 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ playbooks/ssh-config-host | |
playbooks/Vagrantfile | ||
playbooks/ansible/config.yml | ||
devel/authorized_keys | ||
local.yml |
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
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