Update app.py
Browse files
app.py
CHANGED
|
@@ -34,7 +34,7 @@ if not OPENAI_API_KEY:
|
|
| 34 |
app.logger.warning("OPENAI_API_KEY is not set in the environment")
|
| 35 |
|
| 36 |
# βββ 5) Database config βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 37 |
-
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///jobs.db"
|
| 38 |
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
|
| 39 |
app.secret_key = os.getenv("SECRET_KEY", "your_secret_key_here")
|
| 40 |
|
|
|
|
| 34 |
app.logger.warning("OPENAI_API_KEY is not set in the environment")
|
| 35 |
|
| 36 |
# βββ 5) Database config βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 37 |
+
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:////tmp/jobs.db"
|
| 38 |
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
|
| 39 |
app.secret_key = os.getenv("SECRET_KEY", "your_secret_key_here")
|
| 40 |
|