Skip to content

One fewer dependency #151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Data:
"thoroughly tested on.\n\n"
"If you start the system using the default ``docker-compose.yml`` file in the Github repository, this "
"variable (and a database) will be set up for you.",
] = get_config("DB_URL")
] = get_config("DB_URL", default=None)
REDIS_MESSAGE_DATA_EXPIRY_SECONDS: Annotated[
int,
"The messages sent to the system and stored in Redis expire in order to decrease the chance that "
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ services:
dockerfile: mail_receiver/Dockerfile
command: python3 /opt/server.py
environment:
DB_URL: postgresql+psycopg2://postgres:postgres@db:5432/mailgoose
REDIS_URL: redis://redis:6379/0
env_file:
- .env
Expand Down