Add configuration and scripts for linting, testing, and dependency management

- Introduced .pre-commit-config.yaml for pre-commit hooks using uv-pre-commit.
- Created lint.sh script to run Ruff and Black for linting and formatting.
- Added test.sh script to execute tests with coverage reporting.
- Configured .uv file for uv settings including lockfile management and dependency resolution.
- Updated Makefile with targets for virtual environment setup, dependency installation, linting, testing, formatting, and database migrations.
- Established requirements.txt with main and development dependencies for the project.
This commit is contained in:
2025-05-17 20:18:21 +02:00
parent d916ae2247
commit 6b19cbcb51
48 changed files with 4733 additions and 3362 deletions

11
.scripts/lint.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
# Run linting, formatting and type checking
echo "Running Ruff linter..."
uv run -m ruff check dashboard_project
echo "Running Ruff formatter..."
uv run -m ruff format dashboard_project
echo "Running Black formatter..."
uv run -m black dashboard_project

6
.scripts/test.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Run tests with coverage
echo "Running tests with coverage..."
uv run -m coverage run -m pytest
uv run -m coverage report -m