superkit/bootstrap/.env.local

30 lines
783 B
Text
Raw Normal View History

2024-06-06 16:53:16 +02:00
# Application environment
2024-06-12 18:12:27 +02:00
# production or development
2024-06-15 17:34:19 +02:00
SUPERKIT_ENV = development
2024-06-06 16:53:16 +02:00
# HTTP listen port of the application
HTTP_LISTEN_ADDR = :3000
# Database configuration
2024-06-11 20:59:57 +02:00
DB_DRIVER = sqlite3
DB_USER =
DB_HOST =
DB_PASSWORD =
2024-06-07 09:23:06 +02:00
DB_NAME = app_db
2024-06-06 16:53:16 +02:00
MIGRATION_DIR = app/db/migrations
2024-06-12 18:12:27 +02:00
# 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.
2024-06-16 11:18:34 +02:00
SUPERKIT_SECRET = {{app_secret}}
# Authentication Plugin
2024-06-16 11:50:54 +02:00
SUPERKIT_AUTH_REDIRECT_AFTER_LOGIN = /profile
SUPERKIT_AUTH_SESSION_EXPIRY_IN_HOURS = 48
# Skip user email verification
SUPERKIT_AUTH_SKIP_VERIFY = true