Skip to content

Commit

Permalink
sqlite path
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Dec 1, 2024
1 parent bf914f0 commit 22145e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or secrets.token_hex(32)
SQLALCHEMY_DATABASE_URI = 'sqlite:///../../db/frameos.db'
SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI') or 'sqlite:///../../db/frameos.db'

class DevelopmentConfig(Config):
DEBUG = True
Expand Down

0 comments on commit 22145e1

Please sign in to comment.