Compare commits

2 Commits

6 changed files with 24 additions and 24 deletions

Binary file not shown.

View File

@@ -41,7 +41,7 @@ app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(days=365) # Langlebige Session für Dark Mode-Einstellung app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(days=365) # Langlebige Session für Dark Mode-Einstellung
# OpenAI API-Konfiguration # OpenAI API-Konfiguration
client = OpenAI(api_key="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") client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"))
# Context processor für globale Template-Variablen # Context processor für globale Template-Variablen
@app.context_processor @app.context_processor

BIN
website/instance/mindmap.db Normal file

Binary file not shown.

View File

@@ -714,7 +714,7 @@
<!-- Initialization Script --> <!-- Initialization Script -->
<script> <script>
document.addEventListener('DOMContentLoaded', function() { document.addEventListener('DOMContentLoaded', function() {
// Mindmap-Container holen // Mindmap-Container holen
const mindmapContainer = document.getElementById('mindmap-container'); const mindmapContainer = document.getElementById('mindmap-container');