developed files

This commit is contained in:
2025-08-02 20:51:59 -04:00
parent c9f25ea149
commit 2d6c3bff56
24 changed files with 2660 additions and 220 deletions

View File

@@ -9,6 +9,7 @@
## 🚀 Quick Start
### Docker Development (Recommended)
```bash
# Clone the repository
git clone https://github.com/yourusername/job-forge.git
@@ -28,6 +29,20 @@ docker compose up -d
# Database: localhost:5432
```
### Local Development Setup
```bash
# For local development and testing
pip install -r requirements.txt
# For development dependencies only
pip install -r dev-requirements.txt
# Run tests locally
python validate_tests.py # Validate test structure
python run_tests.py # Run API tests against Docker environment
pytest # Run full pytest suite (requires local services)
```
## 📚 Documentation Navigation
### 🏗️ **Architecture & Planning**