Quick reference for starting CodePilot after shutdown.
cd /Users/aliasgarmomin/codepilot
python3 api/main.pyWait for: π CodePilot API ready!
cd /Users/aliasgarmomin/codepilot/web
npm run devWait for: Ready on http://localhost:3000
- Web Interface: http://localhost:3000
- API Docs: http://localhost:8000/docs
- API Health: http://localhost:8000/health
cd /Users/aliasgarmomin/codepilot
docker-compose up -dStop:
docker-compose downcurl http://localhost:8000/healthcurl http://localhost:3000- Go to http://localhost:3000
- Try a search query
- Verify results appear
# Kill all processes
ps aux | grep -E "(api/main.py|npm run dev)" | grep -v grep | awk '{print $2}' | xargs kill -9
# Or manually:
# Ctrl+C in both terminals- Test locally works (both terminals running)
- Search returns results
- GitHub URL ingestion works
- No errors in terminal
- Commit all changes
- Push to GitHub
- Follow DEPLOYMENT.md
See you tomorrow! π