From f5d778956f44f1ab1570bd24d374b99c096b00d7 Mon Sep 17 00:00:00 2001 From: "ryan.gogo" Date: Sat, 14 Feb 2026 06:37:53 +0100 Subject: [PATCH] Update README: Remove non-existent features from documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove saac shell commands (not available) - Remove saac domain commands (not available) - Remove resource limit update commands (not available) - Simplify debugging section with available commands - Keep only working features: logs, env, status 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 48 ++++++++---------------------------------------- 1 file changed, 8 insertions(+), 40 deletions(-) diff --git a/README.md b/README.md index acf865b..3645205 100644 --- a/README.md +++ b/README.md @@ -470,57 +470,25 @@ saac logs --follow ### How to Debug -**Open remote shell:** +**Check deployment logs:** ```bash -saac shell +saac logs --follow ``` -**Inside the container:** +**View environment variables:** ```bash -# Check if app is running -ps aux | grep node +saac env list +``` -# View environment variables -printenv - -# Check database connection -nc -zv postgres 5432 - -# Check Redis connection -nc -zv redis 6379 - -# View application logs -tail -f /var/log/app.log +**Check application status:** +```bash +saac status ``` --- ## Advanced Configuration -### Custom Domain - -To use a custom domain instead of `*.startanaicompany.com`: - -```bash -saac domain add yourdomain.com - -# Update Traefik labels in docker-compose.yml -# Then redeploy -saac deploy -``` - -### Resource Limits - -Set CPU and memory limits: - -```bash -saac update \ - --cpu-limit 2 \ - --memory-limit 2G - -saac deploy -``` - ### Pre-deployment Scripts Run database migrations before deployment: