Skip to content

Commit

Permalink
Default to passing in mysql connection strings
Browse files Browse the repository at this point in the history
I hope this fixes the failing test
  • Loading branch information
mrchrisadams committed May 15, 2024
1 parent 5ac3b37 commit 863a9d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions greenweb/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
SECRET_KEY=(str, "some-key"),
DJANGO_LOG_LEVEL=(str, "INFO"),
# databases
DATABASE_URL=(str, "sqlite:///db.sqlite3"),
DATABASE_URL_READ_ONLY=(str, "sqlite:///db.sqlite3"),
DATABASE_URL=(str, "mysql://localhost:3306/greencheck"),
DATABASE_URL_READ_ONLY=(str, "mysql://localhost:3306/greencheck"),
EXPLORER_TOKEN=(str, "some-token"),
# object storage
OBJECT_STORAGE_ENDPOINT=(str, "https://s3.nl-ams.scw.cloud"),
Expand Down

0 comments on commit 863a9d0

Please sign in to comment.