cd C:\Users\timud\Documents\product-trend-automation
docker-compose up -ddocker psShould see 6 containers running:
- [RUNNING] product-trend-frontend
- [RUNNING] product-trend-backend
- [RUNNING] product-trend-celery
- [RUNNING] product-trend-celery-beat
- [RUNNING] product-trend-db
- [RUNNING] product-trend-redis
- Frontend: http://localhost:3000
- API Docs: http://localhost:8000/docs
- Admin: http://localhost:8000/admin
# Watch live
docker logs product-trend-celery --follow | grep "AUTONOMOUS"
# View recent fixes
docker exec product-trend-backend tail -50 /app/logs/autonomous_fixes.logdocker restart product-trend-backend
docker restart product-trend-celery
docker restart product-trend-frontenddocker logs product-trend-backend
docker logs product-trend-celery
docker logs product-trend-frontenddocker-compose down
docker-compose up -d# Amazon
AMAZON_SP_API_CLIENT_ID=your_client_id
AMAZON_SP_API_CLIENT_SECRET=your_secret
AMAZON_SP_API_REFRESH_TOKEN=your_token
# eBay
EBAY_APP_ID=your_app_id
EBAY_CERT_ID=your_cert
EBAY_DEV_ID=your_dev_id
EBAY_TOKEN=your_token
# TikTok
TIKTOK_SHOP_APP_KEY=your_key
TIKTOK_SHOP_APP_SECRET=your_secret
TIKTOK_SHOP_ACCESS_TOKEN=your_tokenThen restart:
docker-compose restart backend celeryThat's it! Your self-healing system will monitor and fix issues automatically every 15 minutes.