Skip to content

Commit

Permalink
feat: use get_default_postgres_url
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer committed Jan 24, 2024
1 parent 45249a8 commit a02387b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reaction_cime/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

from pydantic import BaseModel
from visyn_core import manager
from visyn_core.settings.utils import get_default_postgres_url


class ReactionCimeSettings(BaseModel):
dburl: str = "postgresql://admin:admin@localhost:5432/db"
dburl: str = get_default_postgres_url()
# statement_timeout: Any = None
bundles_dir: str | None = None
uploaded_files_path: Path = Path("/tmp/uploaded_files")
Expand Down

0 comments on commit a02387b

Please sign in to comment.