feat: Added notes creation, view and deletion, added route planning, added location list with current weather and nearby locations, code improvements and fixes

This commit is contained in:
ITQ
2024-03-26 07:49:50 +03:00
parent 65719a61ef
commit 88dfe1704d
24 changed files with 1571 additions and 301 deletions
+7
View File
@@ -17,4 +17,11 @@ class Config:
"REDIS_URL",
"redis://localhost:6379",
)
OPENTRIPMAP_API_KEY = os.getenv(
"OPENTRIPMAP_API_KEY",
)
OPENWEATHERMAP_API_KEY = os.getenv(
"OPENWEATHERMAP_API_KEY",
)
NEARBY_SIGHTS_RADIUS = 2000
PAGE_SIZE = 6