This commit is contained in:
core 2023-06-13 11:17:30 -04:00
parent c01e11d477
commit f89b05a084
Signed by: core
GPG Key ID: FDBF740DADDCEECF
8 changed files with 144 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

25
.idea/jsonSchemas.xml Normal file
View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JsonSchemaMappingsProjectConfiguration">
<state>
<map>
<entry key="listing.yaml.config">
<value>
<SchemaInfo>
<option name="generatedName" value="New Schema" />
<option name="name" value="listing.yaml.config" />
<option name="relativePathToSchema" value="listing.yaml.config.json" />
<option name="patterns">
<list>
<Item>
<option name="path" value="listing.yaml" />
</Item>
</list>
</option>
</SchemaInfo>
</value>
</entry>
</map>
</state>
</component>
</project>

11
.idea/listgen.iml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="CPP_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/listgen.iml" filepath="$PROJECT_DIR$/.idea/listgen.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -166,3 +166,87 @@ services:
host: core-pi host: core-pi
backups: daily backups: daily
admins: [ "core" ] admins: [ "core" ]
- name: CryptPad
software: cryptpad
public: true
url: "https://pad.e3t.cc"
host: core-pi
backups: "Every 6 hours"
admins: [ "core" ]
- name: Pterodactyl
software: pterodactyl
public: false
url: "https://panel.e3t.cc"
host: central2
backups: "Never"
admins: [ "core" ]
- name: VaultWarden
software: vaultwarden
public: true
url: "https://vault.e3t.cc"
host: east1
backups: "Never"
admins: ["core"]
- name: e3t Mail Servers
software: Redacted for security
public: false
url: Redacted for security
host: Redacted for security
backups: "Daily"
admins: ["core"]
- name: Sourcehut
software: metasrht
public: true
url: "https://meta.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Sourcehut Git
software: gitsrht
public: true
url: "https://git.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Sourcehut Lists
software: listssrht
public: true
url: "https://lists.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Sourcehut Todo
software: todosrht
public: true
url: "https://todo.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Sourcehut Manual
software: mansrht
public: true
url: "https://man.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Sourcehut Builds
software: buildssrht
public: false
url: "https://builds.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Sourcehut Paste
software: pastesrht
public: true
url: "https://paste.e3t.cc"
host: "sourcehutvm @ cluster0"
backups: "Daily"
admins: ["core"]
- name: Zulip Chat
software: zulip
public: true
url: "https://zulip.e3t.cc"
host: central2
backups: "Never"
admins: ["core"]

File diff suppressed because one or more lines are too long