-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
38 lines (30 loc) · 964 Bytes
/
.env.sample
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
# Application environment
# production or development
SUPERKIT_ENV=development
# Application name
APP_NAME=Messages
# HTTP listen port of the application
# Use localhost:3001 for development to avoid firewall alerts for every binary change
HTTP_LISTEN_ADDR=localhost:3001
#HTTP_LISTEN_ADDR=:3001 # for production
# Database configuration
DB_DRIVER=sqlite3
DB_USER=
DB_HOST=
DB_PASSWORD=
DB_NAME=db/app.db
# Timezone of the application (Default to America/Toronto)
TIMEZONE=America/Toronto
MIGRATION_DIR=app/db/migrations
# Application secret used to secure your sessions.
# The secret will be auto generated on install.
# If you still want to change it make sure its at
# least 32 bytes long.
# NOTE: You might want to change this secret when using
# your app in production.
SUPERKIT_SECRET=
# Authentication Plugin
SUPERKIT_AUTH_REDIRECT_AFTER_LOGIN=/
SUPERKIT_AUTH_SESSION_EXPIRY_IN_HOURS=48
# Skip user email verification
SUPERKIT_AUTH_SKIP_VERIFY=true