Saving current working state before proceeding to Stage 2. Includes: - Backend: Python-based QC validator with shapefile processing - Frontend: Drag-and-drop file upload interface - Sample files for testing - Documentation and revision history 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
487 B
Bash
Executable File
20 lines
487 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Verofy HLD QC Tool - Server Startup Script
|
|
|
|
echo "Starting Verofy HLD QC Backend Server..."
|
|
echo "========================================"
|
|
|
|
cd backend
|
|
|
|
# Check if virtual environment exists
|
|
if [ ! -d ".venv" ]; then
|
|
echo "Error: Virtual environment not found!"
|
|
echo "Please run: cd backend && uv venv && uv pip install -r requirements.txt"
|
|
exit 1
|
|
fi
|
|
|
|
# Activate virtual environment and start server
|
|
source .venv/bin/activate
|
|
python main.py
|