Add better explanation for git privacity split
This commit is contained in:
parent
b9d9ffebd0
commit
e8adb7dc47
|
@ -1,5 +1,12 @@
|
||||||
|
# Two repositories are bound to this folder
|
||||||
|
# > the public version only expose infrastructure configuration
|
||||||
|
# >> specific ignores for it are located in .git_public/info/exclude (also hardlinked to .gitignore_public)
|
||||||
.git_public
|
.git_public
|
||||||
|
# > the private version contains sensitive data and more detailed configurations
|
||||||
|
# >> specific ignores for it are located in .git_private/info/exclude (also hardlinked to .gitignore_private)
|
||||||
.git_private
|
.git_private
|
||||||
|
|
||||||
|
# These are common ignores for all repositories
|
||||||
/#recycle
|
/#recycle
|
||||||
@eaDir
|
@eaDir
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
# git ls-files --others --exclude-from=.git/info/exclude
|
## Specific ignores for public repository ##
|
||||||
# Lines that start with '#' are comments.
|
# Note: Always work with this repository with an alias, as follows:
|
||||||
# For a project mostly in C, the following would be a good set of
|
# alias gitpublic='git --git-dir=.git_public'
|
||||||
# exclude patterns (uncomment them if you want to use them):
|
|
||||||
# *.[oa]
|
|
||||||
# *~
|
|
||||||
filebot/desktop/config
|
filebot/desktop/config
|
||||||
filebot/licenses
|
filebot/licenses
|
||||||
filebot/old
|
filebot/old
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Mangrana dockers configuration
|
# Mangrana dockers configuration
|
||||||
## Note
|
## Note
|
||||||
This is the configuration of the dockers (image, volumes, ports...), not the configuration of each application, which is hidden from the version control tracking due to the high amount of files they have and their constantly change. Also because they use to contain sensitive information, such as endpoints and access credentials.
|
This is the configuration of the dockers (image, volumes, ports...), not the configuration of each application, which is hidden from the public audience because it uses to contain sensitive information, such as endpoints and access credentials. By this reason, I've enabled a two repository capability, so that I can persist the public and private domain information separately even though they live together in the same folder tree.
|
||||||
## What is this about?
|
## What is this about?
|
||||||
These sort of dockers conforms the majority of the services that represents my Automated Home Cinema system.
|
These sort of dockers conforms the majority of the services that represents my Automated Home Cinema system.
|
||||||
### Streaming service?
|
### Streaming service?
|
||||||
|
|
Loading…
Reference in New Issue