voice state - also there was no git history here so im just force pushing

This commit is contained in:
CEF Server 2024-05-11 07:40:39 +00:00
commit 9c41144985
9 changed files with 207 additions and 0 deletions

15
config.example.py Normal file
View file

@ -0,0 +1,15 @@
import os
SECRETKEY = os.path.join("secrets", "pubkey.pem")
MINIO_ADDR = "data.example.xyz"
MINIO_ACCESS_KEY = "access-key-goes-here"
MINIO_SECRET_KEY = "secret-key-goes-here"
MARIADB_URL = "localhost"
MARIADB_USER = "ergo"
MARIADB_DB = "ergo_ext"
MARIADB_PASSWORD = "password-goes-here"
MAX_FILE_SIZE = 1024*1024*20
# Need to figure out how to make this cooperate more
ALLOWED_DOMAINS = ["*"]