-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.test-env
More file actions
71 lines (57 loc) · 1.95 KB
/
Copy path.test-env
File metadata and controls
71 lines (57 loc) · 1.95 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
# renamed to .env.
# The URL this should sit on.
BIND_TO="127.0.0.1:17001"
# Your domain. In production this is used for secure
# cookie handling.
JELLY_DOMAIN="http://127.0.0.1:17001"
# Your domain. In production this is used for secure
# session handling.
# Needs to be set for production usage,
# it's due to cookie handling for local hosts vs domains.
SESSIONID_DOMAIN="https://www.example.com:17001"
# Your database URL.
#
DATABASE_URL="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/jelly"
# Your SECRET_KEY value, used notably for secure cookies.
# If you change this, existing secure cookies will become invalid
# and users will need to 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="none"
# Your postmarkapp.com API key, for sending emails. If you swap the Email
# engine, then change this accordingly.
#
# Uncomment to use.
POSTMARK_API_KEY="none"
POSTMARK_MESSAGE_STREAM="outbound"
# Your sendgrid.com API key, for sending emails.
#
# Uncomment to use.
SENDGRID_API_KEY="none"
# EMAIL DEFAULT SENDER
EMAIL_DEFAULT_FROM="example <test@example.com>"
# EMAIL SMTP CONFIGURATION
EMAIL_SMTP_HOST="localhost"
EMAIL_SMTP_PORT="1025"
EMAIL_SMTP_USERNAME="maildev"
EMAIL_SMTP_PASSWORD="mailpass"
# Disable TLS. Use only for local development.
EMAIL_SMTP_NOTLS=1
# Templates to monitor and/or use. e.g:
#
# /My/Templates/Path/**/*
#
# Uncomment to use.
TEMPLATES_GLOB="templates/**/*"
# Uncomment and set to your path to your static root, for static files.
STATIC_ROOT="static"
# Just force these here to make life easier. ;P
RUST_BACKTRACE=1
RUST_LOG="info,actix_web=trace,background_jobs_core=debug"
# All variables starting with JELLY_ are exported in templates context and as
# such can be use in response and mail templates
#
JELLY_SUPPORT_EMAIL="support@example.com"
JELLY_HELP_URL="http://example.com/help"