-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): update project configuration and dependencies
- Add environment variable templates with PostgreSQL settings - Add database performance tuning variables - Add coverage configuration - Update Poetry dependencies - Update gitignore patterns for test artifacts - Add testing environment settings BREAKING CHANGE: Development environment now requires PostgreSQL configuration
- Loading branch information
Showing
4 changed files
with
130 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# PostgreSQL Configuration | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=postgres | ||
POSTGRES_DB=test_db | ||
POSTGRES_HOST=test-db | ||
POSTGRES_PORT=5432 | ||
POSTGRES_EXTENSIONS=uuid-ossp,pgcrypto | ||
|
||
# PostgreSQL Performance Tuning | ||
POSTGRES_MAX_CONNECTIONS=1000 | ||
POSTGRES_SHARED_BUFFERS=128MB | ||
POSTGRES_FSYNC=off | ||
POSTGRES_SYNCHRONOUS_COMMIT=off | ||
POSTGRES_FULL_PAGE_WRITES=off | ||
|
||
# Application Settings | ||
PYTHONPATH=/app | ||
PYTHONUNBUFFERED=1 | ||
TESTING=1 | ||
|
||
# Coverage Settings | ||
COVERAGE_FILE=/app/coverage/.coverage | ||
COVERAGE_REPORT_HTML=/app/coverage/html/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters