1
0
Fork 0

Add better explanation for git privacity split

This commit is contained in:
xavier 2024-07-06 23:01:15 +02:00
parent b9d9ffebd0
commit e8adb7dc47
3 changed files with 12 additions and 7 deletions

7
.gitignore vendored
View File

@ -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

View File

@ -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

View File

@ -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?