-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathexample.config.toml
More file actions
65 lines (46 loc) · 1.08 KB
/
Copy pathexample.config.toml
File metadata and controls
65 lines (46 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
APP_TOKEN = "FILL_ME"
BOT_TOKEN = "FILL_ME"
DEBUG = true
PREFIX = "="
APPS = [
# Core apps
"yui.apps.core",
# Add your apps
"yui.apps.hi",
]
DATABASE_URL = "postgresql+psycopg://postgres:DEV_ONLY@localhost/yui_item4"
DATABASE_ECHO = false
NAVER_CLIENT_ID = "FILL_ME"
NAVER_CLIENT_SECRET = "FILL_ME"
GOOGLE_API_KEY = "FILL_ME"
WEBSOCKETDEBUGGERURL = "http://localhost:9222/json/version"
WEEKEND_LOADING_TIME = []
[CHANNELS]
general = "FILL_ME"
notice = "FILL_ME"
welcome = "FILL_ME"
auto_cleanup_targets = ["FILL_ME"]
[USERS]
owner = "FILL_ME"
force_cleanup = ["FILL_ME"]
[CACHE]
URL = "valkey://localhost:6379/0"
PREFIX = "YUI_"
[LOGGING]
version = 1
disable_existing_loggers = false
[LOGGING.formatters.brief]
format = "%(message)s"
[LOGGING.formatters.default]
format = "%(asctime)s %(levelname)s %(name)s %(message)s"
datefmt = "%Y-%m-%d %H:%M:%S"
[LOGGING.handlers.console]
class = "logging.StreamHandler"
formatter = "default"
level = "DEBUG"
filters = []
stream = "ext://sys.stdout"
[LOGGING.loggers.yui]
handlers = ["console"]
propagate = true
level = "DEBUG"