forked from doubaniux/boofilsic
-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathneodb.env.example
39 lines (30 loc) · 1.09 KB
/
neodb.env.example
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
# NEODB Configuration
# copy along with compose.yml, rename this file to .env
# Must uncomment these if you are doing development
# NEODB_DEBUG=True
# NEODB_IMAGE=neodb/neodb:edge
# Change these before start the instance for the first time!!
NEODB_SECRET_KEY=change_me
NEODB_SITE_NAME=Example Site
NEODB_SITE_DOMAIN=example.site
# Change these to customize your site
NEODB_SITE_INTRO=/welcome.html
NEODB_SITE_LOGO=/logo.png
NEODB_SITE_ICON=/icon.png
NEODB_SITE_LINKS=@NiceDB=https://donotban.com/@testie,@NeoDB=https://mastodon.social/@neodb
# preferred languages
# NEODB_PREFERRED_LANGUAGES=en,es,fr,de,pt,zh,ja,ko
# To enable push notification, generate a keypair from https://web-push-codelab.glitch.me
# TAKAHE_VAPID_PUBLIC_KEY=
# TAKAHE_VAPID_PRIVATE_KEY=
# HTTP port your reverse proxy should send request to
# NEODB_PORT=8000
# Path to store db/media/cache/etc, must be writable
# NEODB_DATA=/var/lib/neodb
# Scaling parameters
# NEODB_WEB_WORKER_NUM=32
# NEODB_API_WORKER_NUM=16
# NEODB_RQ_WORKER_NUM=8
# TAKAHE_WEB_WORKER_NUM=32
# TAKAHE_STATOR_CONCURRENCY=10
# TAKAHE_STATOR_CONCURRENCY_PER_MODEL=10