Various fixes, AI

This commit is contained in:
2026-03-31 21:50:30 +02:00
parent 372da3caa9
commit de1fa76e40
5 changed files with 29 additions and 13 deletions

View File

@@ -37,7 +37,7 @@ EMAIL_USE_TLS = False
# Hosts/domain names that are valid for this site; required if DEBUG is False
ALLOWED_HOSTS = ["localhost", "127.0.0.1", ".blechreiz.com", ".bauer.technology"]
ALLOWED_HOSTS = ["localhost", "127.0.0.1", ".blechreiz.com", ".bauer.technology", ".bauer.tech"]
# Local time zone for this installation.
TIME_ZONE = "Europe/Berlin"
@@ -119,6 +119,7 @@ TEMPLATES = [
"django.template.context_processors.media",
"django.template.context_processors.static",
"sekizai.context_processors.sekizai",
"blechreiz.context_processors.google_maps",
],
},
},
@@ -170,6 +171,12 @@ GCAL_COUPLING = {
}
# Google Maps API Key
# Get your API key from https://console.cloud.google.com/apis/credentials
# Enable the Maps JavaScript API and Geocoding API
GOOGLE_MAPS_API_KEY = "AIzaSyCf9Lm5ckjmVd08scTOd7fB1dC_UCoumKg"
# Crispy Forms configuration
CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5"
CRISPY_TEMPLATE_PACK = "bootstrap5"