forked from onetimesecret/onetimesecret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
57 lines (48 loc) · 937 Bytes
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# This file is used to manage environment variables for the application.
#
#
# Usage:
#
# By including `set -a` and `set +a` inline, we ensure that the environment variables
# are exported only when this file is sourced. This way, we only need to run the
# `source .env` command to set the environment variables.
#
# $ source .env
#
set -a
##
# App
#
ONETIME_DEBUG="false"
HOST="localhost:3000"
SSL="true"
SECRET="CHANGEME"
REDIS_URL="redis://CHANGEME@redis:6379/0"
COLONEL="[email protected]"
##
# Development
#
FRONTEND_HOST=http://localhost:5173
VITE_API_BASE_URL=http://localhost:6379
##
# SMTP Testing (see bin/smtp_test.rb)
#
SMTP_HOST=
SMTP_PORT=
SMTP_USERNAME=
SMTP_PASSWORD=
FROM_EMAIL=
TO_EMAIL=
##
# Redis
#
REDIS_PASSWORD="CHANGEME"
##
# Operational
#
# The key for Altcha is equivalent to ALTCHA_HMAC_KEY
AUTHENTICITY_TYPE=altcha
AUTHENTICITY_SECRET_KEY=<REPLACE_WITH_STRONG_HMAC_KEY>
JURISDICTION=EU
set +a