Add Minimal Dockerfile
This commit is contained in:
24
docker/config.py
Normal file
24
docker/config.py
Normal file
@@ -0,0 +1,24 @@
|
||||
"""Sigl Docker Default Configuration.
|
||||
|
||||
Simple Grocery List (Sigl) | sigl.app
|
||||
Copyright (c) 2022 Asymworks, LLC. All Rights Reserved.
|
||||
"""
|
||||
|
||||
# Session and Token Keys
|
||||
APP_SESSION_KEY = 'sigl-docker-session-key'
|
||||
APP_TOKEN_KEY = 'sigl-docker-token-key'
|
||||
|
||||
# Database Settings
|
||||
DB_DRIVER = 'sqlite'
|
||||
DB_FILE = '/var/lib/sigl/sigl-test.db'
|
||||
|
||||
# Mail Configuration
|
||||
MAIL_ENABLED = False
|
||||
|
||||
# Logging Configuration
|
||||
LOGGING_DEST = 'wsgi'
|
||||
LOGGING_LEVEL = 'debug'
|
||||
LOGGING_FORMAT = '[%(asctime)s] [%(remote_addr)s - %(url)s] %(levelname)s in %(module)s: %(message)s'
|
||||
LOGGING_BACKTRACE = False
|
||||
SOCKETIO_LOGGING = True
|
||||
ENGINEIO_LOGGING = True
|
||||
Reference in New Issue
Block a user