A Flutter-based platform designed to connect local residents with micro-job opportunities within their barangay.
To keep your local code in sync with the team:
- Pull latest changes:
git pull origin main - Stage changes:
git add . - Commit changes:
git commit -m "Brief description of what you did" - Push to GitHub:
git push origin feature/your-task-name
- Navigate to the backend directory:
cd backend - Create a virtual environment:
python -m venv venv
- Activate the virtual environment:
- On Windows:
venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate - Install dependencies:
pip install -r requirements.txt
- Run the FastAPI server:
uvicorn app.main:app --reload