Helper scripts for development and deployment.
Creates and activates the conda environment.
scripts\setup-conda.batBuilds and starts all Docker services.
scripts\setup-docker.batRuns backend tests with pytest.
scripts\test-backend.bat # All tests
scripts\test-backend.bat -m unit # Unit tests only
scripts\test-backend.bat -v # Verbose outputRuns frontend tests with Jest.
scripts\test-frontend.batVerifies that all required tools are installed and configured.
scripts\verify.bat# 1. Verify prerequisites
scripts\verify.bat
# 2. Setup conda environment
scripts\setup-conda.bat
# 3. Start Docker services
scripts\setup-docker.bat# Start services
docker-compose up
# Run tests
scripts\test-backend.bat
scripts\test-frontend.bat# Verify setup
scripts\verify.bat
# Rebuild environment
conda env remove -n tapin
scripts\setup-conda.bat
# Rebuild Docker
docker-compose down -v
scripts\setup-docker.bat- All scripts assume you're running from the project root directory
- Scripts use Windows batch file format (
.bat) - For detailed commands, see docs/DEVELOPMENT.md