Skip to content

Commit

Permalink
removed debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rhimmelbauer committed Oct 9, 2024
1 parent 351545e commit 501b679
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion develop/develop/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'

DATABASES = {}
print(f"DATABASE_URL: {os.environ.get('DATABASE_URL')}", 'sqlite:///{}'.format(os.path.join(BASE_DIR, 'db.sqlite3')))
DATABASES['default'] = dj_database_url.config(conn_max_age=600, ssl_require=False, default=os.environ.get('DATABASE_URL', 'sqlite:///{}'.format(os.path.join(BASE_DIR, 'db.sqlite3')))) # Default to SQLite for testing on GitHub

# DATABASES = {
Expand Down

0 comments on commit 501b679

Please sign in to comment.