-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
37 lines (31 loc) · 1005 Bytes
/
.env.example
File metadata and controls
37 lines (31 loc) · 1005 Bytes
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
# --- Security Settings ---
# Important: Change this to a secure random string in production!
JWT_SECRET=change_me_to_a_secure_random_secret
# --- App Settings ---
# Set to True for local development to see errors, False for production
DEBUG=True
# Host and Port for the Uvicorn Server (when running locally)
HOST=127.0.0.1
PORT=2468
# --- MariaDB Credentials ---
MARIADB_USER=hyperion
MARIADB_PASSWORD=hyperion
DATABASE=hyperion
# --- Redis Credentials ---
REDIS_USER=default
REDIS_PASSWORD=hyperion
# --- Test Configuration ---
# Uncomment if you want API Tests
# TEST_USER=admin
# TEST_PASSWORD=Test1234!
#
# --- Network Configuration (Optional) ---
# NOTE: Leave these commented out for local development!
# - If commented out: Python uses '127.0.0.1' (default in config.py).
# - Docker Compose: Automatically overrides these to 'database' and 'redis'.
#
# Only uncomment if you are using an external database provider.
# DB_HOST=127.0.0.1
# DB_PORT=3306
# REDIS_HOST=127.0.0.1
# REDIS_PORT=6379