fixes overall

This commit is contained in:
Didier Slof 2023-03-01 15:21:06 +01:00
parent eac693f7f5
commit acafd7a214
Signed by: didier
GPG key ID: 01E71F18AA4398E5
5 changed files with 13 additions and 33 deletions

13
.gitmodules vendored
View file

@ -1,20 +1,7 @@
[submodule "repos/dotfiles"]
path = repos/dotfiles
url = git@git.ixvd.net:didier/dotfiles
[submodule "env"] [submodule "env"]
path = env path = env
url = git@git.ixvd.net:infra/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"] [submodule "custom/backups/repo"]
path = custom/backups/repo path = custom/backups/repo
url = git@git.ixvd.net:infra/backups url = git@git.ixvd.net:infra/backups

View file

@ -1,40 +1,51 @@
# Neo, compose. # Neo, compose
## Maintainers ## Maintainers
Primary maintainers over this repo. Primary maintainers over this repo.
- Didier `<didier@faulty.nl>` - Didier `<didier@faulty.nl>`
## Compose Sections ## Compose Sections
All sections are divided into files. All sections are divided into files.
### base ### base
> Note: this is an establishing-section. It should not include services. > 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. This section is responsible for the reverse proxy and all other to establish a proper connection to a service.
### core ### core
Core is responsible for some essential services used throughout the IXVD/Faulty ecosystem. Core is responsible for some essential services used throughout the IXVD/Faulty ecosystem.
### cloud ### cloud
Section related to cloud services. Section related to cloud services.
E.g. Cryptpad. E.g. Cryptpad.
### devops ### devops
Anything related to having a proper development experience. Anything related to having a proper development experience.
### dev-serve ### dev-serve
Contains servers used for collaborative development. Contains servers used for collaborative development.
E.g. databases, message brokers, etc. E.g. databases, message brokers, etc.
### games ### games
Any games hosted on neo are located here. Any games hosted on neo are located here.
### media ### media
Media servers. Media servers.
### utils ### utils
Utilities that are too category-scarce to get it's own section. Utilities that are too category-scarce to get it's own section.
### web ### web
Websites and such.
Websites and such.

@ -1 +0,0 @@
Subproject commit c2e9e574a6b157d8d3f62024ca5454bb851382ef

@ -1 +0,0 @@
Subproject commit bea37577df63b3505173b24d189185c20f2b1b0f

View file

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