-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
89 lines (74 loc) · 3 KB
/
.env.example
File metadata and controls
89 lines (74 loc) · 3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# After configuring this file it should be renamed to .env
# The IP interface this should listen on. Should be 0.0.0.0 for docker deployment
BIND_TO="0.0.0.0"
PORT="17001"
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
GITHUB_REDIRECT_URL=""
MAX_REMEMBER_ME_DAYS="30"
MAX_COLLISIONS_ALLOWED="3"
SENTRY_URL=""
# Your domain. In production this is used for secure cookie handling.
# In production you might have a reverse proxy in front of jelly
# handling ssl termination and listening on 443 and then passing to 17001.
# In that case you might use: DOMAIN="https://www.example.com"
JELLY_DOMAIN="http://127.0.0.1:17001"
# Your domain. In production this is used for secure session handling.
# Set in production usage due to cookie handling for local hosts vs domains.
SESSIONID_DOMAIN="www.example.com"
# Your database URL, an example of what this looks like for postgres below:
# DATABASE_URL="postgres://user:VeryLongExamplePaswordReplaceMe@localhost/jellyDB"
# DATABASE_URL=""
# DATABASE URL FOR TESTING
# DATABASE_URL_TEST_BASE="postgres://postgres@localhost/postgres"
# DATABASE_URL_TEST="postgres://postgres@localhost/movey_app_test"
# Database pool size, default 15. Override if needed.
# DATABASE_POOL_SIZE=
# Your SECRET_KEY value, used notably for secure cookies.
# If changed, existing secure cookies become invalid and users must reauthenticate.
#
# This is similar to Django, so feel free to check a guide for creating one.
# Be mindful of special characters here - e.g, "$" needs to be "\$".
#
# SECRET_KEY=""
# Your postmarkapp.com API key, for sending emails, Uncomment to use.
#
# POSTMARK_API_KEY=""
#
# Postmark stream to be used : Should be outbound for transactional messages
# POSTMARK_MESSAGE_STREAM="outbound"
#
# Your sendgrid.com API key, for sending emails, Uncomment to use.
#
# SENDGRID_API_KEY=""
# All variables starting with JELLY_ are exported in templates context and as
# such can be used in web and mail templates, this means you could create
# a link in a template for example: <a href="{{ JELLY_DOMAIN }}">HOME</a>
JELLY_SUPPORT_EMAIL="support@example.com"
# EMAIL DEFAULT SENDER
EMAIL_DEFAULT_FROM="noreply@example.com"
# EMAIL SMTP CONFIGURATION
EMAIL_SMTP_HOST="smtp.example.com"
EMAIL_SMTP_PORT="465"
EMAIL_SMTP_USERNAME="noreply@example.com"
EMAIL_SMTP_PASSWORD=""
# Disable TLS. Use only for local development.
#EMAIL_SMTP_NOTLS=1
# Templates to monitor and/or use.
TEMPLATES_GLOB="templates/**/*"
# Uncomment and set to your path to your static root, for static files.
# STATIC_ROOT=""
# Just force these here to make life easier. ;P
RUST_BACKTRACE=1
RUST_LOG="info,actix_web=trace,background_jobs_core=debug"
NO_REPLY_EMAIL_DOMAIN="users.noreply.movey.net"
GITHUB_ACCESS_TOKEN=""
DEEP_AI_API_KEY=""
CRAWLING="false"
IS_SECURE_COOKIE="false"
#Example of using categories in contact us page
CATEGORIES='["Account", "Password/Login issue", "Contributor", "Others", "Claim ownership"]'
SENTRY_ALERT_ENVIRONMENT = "PRODUCTION"
CAPTCHA_SECRET_KEY = ""
JELLY_CAPTCHA_SITE_KEY = ""
OWNERSHIP_INVITATIONS_EXPIRATION_DAYS=10