- Implement lightweight link-shortener core using Flask and SQLite3 - Configure secure session cookie management via environment variables - Set up isolated database helper modules with strict contextual teardown - Add comprehensive .gitignore to prevent committing runtime environment and local databases - Define production-ready structure including template directories and dependencies
12 lines
156 B
Text
12 lines
156 B
Text
# Python-Umgebung ignorieren
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Lokale Datenbank & Ordner ignorieren
|
|
data/
|
|
*.db
|
|
|
|
# macOS Systemdateien ignorieren
|
|
.DS_Store
|