fixes overall
This commit is contained in:
parent
eac693f7f5
commit
acafd7a214
5 changed files with 13 additions and 33 deletions
13
.gitmodules
vendored
13
.gitmodules
vendored
|
@ -1,20 +1,7 @@
|
|||
[submodule "repos/dotfiles"]
|
||||
path = repos/dotfiles
|
||||
url = git@git.ixvd.net:didier/dotfiles
|
||||
|
||||
[submodule "env"]
|
||||
path = env
|
||||
url = git@git.ixvd.net:infra/env
|
||||
|
||||
[submodule "repos/main-site"]
|
||||
path = repos/faulty-site
|
||||
url = git@git.ixvd.net:didier/site
|
||||
[submodule "repos/backups"]
|
||||
path = repos/backups
|
||||
url = git@git.ixvd.net:infra/backups
|
||||
[submodule "repos/ixvd-site"]
|
||||
path = repos/ixvd-site
|
||||
url = git@git.ixvd.net:this/site
|
||||
[submodule "custom/backups/repo"]
|
||||
path = custom/backups/repo
|
||||
url = git@git.ixvd.net:infra/backups
|
||||
|
|
15
README.md
15
README.md
|
@ -1,40 +1,51 @@
|
|||
# Neo, compose.
|
||||
# Neo, compose
|
||||
|
||||
## Maintainers
|
||||
|
||||
Primary maintainers over this repo.
|
||||
|
||||
- Didier `<didier@faulty.nl>`
|
||||
|
||||
## Compose Sections
|
||||
|
||||
All sections are divided into files.
|
||||
|
||||
### base
|
||||
|
||||
> Note: this is an establishing-section. It should not include services.
|
||||
|
||||
This section is responsible for the reverse proxy and all other to establish a proper connection to a service.
|
||||
|
||||
### core
|
||||
|
||||
Core is responsible for some essential services used throughout the IXVD/Faulty ecosystem.
|
||||
|
||||
### cloud
|
||||
|
||||
Section related to cloud services.
|
||||
E.g. Cryptpad.
|
||||
|
||||
### devops
|
||||
|
||||
Anything related to having a proper development experience.
|
||||
|
||||
### dev-serve
|
||||
|
||||
Contains servers used for collaborative development.
|
||||
E.g. databases, message brokers, etc.
|
||||
|
||||
### games
|
||||
|
||||
Any games hosted on neo are located here.
|
||||
|
||||
### media
|
||||
|
||||
Media servers.
|
||||
|
||||
### utils
|
||||
|
||||
Utilities that are too category-scarce to get it's own section.
|
||||
|
||||
### web
|
||||
Websites and such.
|
||||
|
||||
Websites and such.
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit c2e9e574a6b157d8d3f62024ca5454bb851382ef
|
|
@ -1 +0,0 @@
|
|||
Subproject commit bea37577df63b3505173b24d189185c20f2b1b0f
|
|
@ -1,16 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$(id -u)" -ne 0 ]; then
|
||||
echo "Please run as root"
|
||||
exit
|
||||
fi
|
||||
|
||||
case $1 in
|
||||
router)
|
||||
cp router.sh /usr/local/bin/router.sh
|
||||
;;
|
||||
repo)
|
||||
mkdir /docker
|
||||
cp * .* /docker
|
||||
;;
|
||||
esac
|
Reference in a new issue