hoekashinov/mirrors
1
1. Launching the backend
cd /backend1.1 Launching REDIS for data caching
docker compose up redis1.2 Running Temporal worker for workflow execution
IMPORTANT: Make sure you have Temporal Cloud credentials set in your .env file:
TEMPORAL_ADDRESS=us-west-2.aws.api.temporal.io:7233TEMPORAL_NAMESPACE=kortix-1.d5grrTEMPORAL_API_KEY=<your-api-key>
uv run python -m core.temporal.workerOr alternatively:
uv run core/temporal/worker.py1.3 Running the main API server
uv run api.pyOr using uvicorn directly:
uv run uvicorn api:app --host 0.0.0.0 --port 8000 --reload1.4 Running worker health check
uv run worker_health.py2. Launching the frontend
cd frontend && npm install
npm run devAccess the main app via http://localhost:3000
