-
Notifications
You must be signed in to change notification settings - Fork 4
/
dev.dist.env
42 lines (30 loc) · 1.12 KB
/
dev.dist.env
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
# Customize these environment variables to your liking for your local dev install
# The passwords are randomly generated, but things like MariaDB are never exposed
# to the web in local
PUID=1000
PGID=1000
# Database username used by the app
MARIADB_USER="web"
# Database password used by the app
MARIADB_PASSWORD="ymiS3QDYELqAwcWXJBVkenuDkt"
# Database name used by the app
MARIADB_DATABASE="waterwolf"
# Root DB password for admins
MARIADB_ROOT_PASSWORD="CD2132428BD13725AA3EFCCF92DB"
# AWS Simple E-mail Service (SES) DSN
MAILER_DSN="ses+smtp://ACCESS_KEY:SECRET_KEY@default?region=us-west-2"
# Credentials for VRChat API
VRCHAT_USERNAME=""
VRCHAT_PASSWORD=""
VRCHAT_TOTP=""
# Webhook URL to dispatch
DISCORD_WEBHOOK_URL=""
# S3 credentials for Restic and user uploads.
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
# Restic URI for backups.
RESTIC_REPOSITORY="s3:https://${ACCOUNT_ID}.r2.cloudflarestorage.com/waterwolf-website-backup"
# Restic password for encrypting backups.
RESTIC_PASSWORD=""
# S3 URI for user uploaded media.
MEDIA_REPOSITORY="s3:https://${ACCOUNT_ID}.r2.cloudflarestorage.com/waterwolf-website-uploads"