-
-
Notifications
You must be signed in to change notification settings - Fork 71
feat!: v0.3.0
#212
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
base: main
Are you sure you want to change the base?
feat!: v0.3.0
#212
Conversation
* chore: update styles and auth forms * fix: lint
* fix: show login error * fix: show shignup error * chore: pre-commit
@@ -46,7 +52,9 @@ | |||
"""Amount of time to wait before recycling connections.""" | |||
POOL_PRE_PING: bool = field(default_factory=get_env("DATABASE_PRE_POOL_PING", False)) | |||
"""Optionally ping database before fetching a session from the connection pool.""" | |||
URL: str = field(default_factory=get_env("DATABASE_URL", "sqlite+aiosqlite:///db.sqlite3")) | |||
URL: str = field( | |||
default_factory=get_env("DATABASE_URL", "postgres://app:app@localhost:15432/app") |
Check failure
Code scanning / SonarCloud
PostgreSQL database passwords should not be disclosed High
|
Description
Closes