6 lines
153 B
Python
6 lines
153 B
Python
import os
|
|
|
|
class Config:
|
|
# Use the environment variable for the database URI
|
|
SQLALCHEMY_DATABASE_URI = os.environ.get("SQLALCHEMY_DATABASE_URI")
|