new file: .gitignore new file: Dockerfile new file: README.md new file: app.py new file: auth.py new file: config.py new file: db.py new file: db_helpers.py new file: docker-compose.yml new file: requirements.txt new file: routes/__init__.py new file: routes/admin_routes.py new file: routes/auth_routes.py new file: routes/journal_routes.py new file: static/css/style.css new file: static/js/main.js new file: templates/admin/dashboard.html new file: templates/admin/users.html new file: templates/base.html new file: templates/day.html new file: templates/future.html new file: templates/index.html new file: templates/login.html new file: templates/week.html
16 lines
398 B
Plaintext
16 lines
398 B
Plaintext
# MySQL Verbindung
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
DB_USER=journal
|
|
DB_PASSWORD=journalpass
|
|
DB_DATABASE=journal
|
|
|
|
# Flask / Sicherheit
|
|
# -> In Coolify als Secrets hinterlegen (nicht im Code!)
|
|
SECRET_KEY=please-change-me-strong-secret
|
|
PEPPER=please-change-me-pepper-value
|
|
|
|
# Erster Admin (wird beim ersten Start automatisch angelegt)
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=please-change-me-admin-password
|