6 lines
189 B
Python
6 lines
189 B
Python
#!/usr/bin/env python
|
|
from app.core.config import settings
|
|
|
|
print("Settings loaded successfully")
|
|
print(f"API_V1_STR: {settings.API_V1_STR}")
|
|
print(f"DATABASE_URL: {settings.DATABASE_URL}") |