major claude changes

This commit is contained in:
2026-01-28 21:55:19 -05:00
parent 2257c084d3
commit 7254b45542
3 changed files with 15 additions and 9 deletions

View File

@@ -2,7 +2,6 @@ import os
def load_config(mode=os.environ.get('MODE')):
try:
print(f"mode is {mode}")
if mode == 'PRODUCTION':
from settings_prod import ApplicationConfig
return ApplicationConfig

View File

@@ -1,6 +1,14 @@
fastapi
uvicorn[standard]
psycopg2-binary
sqlalchemy
pyowm
setuptools
# eamco_playground dependencies
# FastAPI web framework and server
fastapi==0.115.6
uvicorn[standard]==0.34.0
# Database
SQLAlchemy==2.0.40
psycopg2-binary==2.9.10
# Weather API
pyowm==3.3.0
# Build tools
setuptools==75.8.0

View File

@@ -5,7 +5,6 @@ class ApplicationConfig:
Basic Configuration for a generic User
"""
print("USING TESTING APPLICATIONCONFIG!!!!!")
CURRENT_SETTINGS = 'DEVELOPMENT'
# databases info
POSTGRES_USERNAME = 'postgres'