← ClaudeAtlas

authos-platform-deploymentlisted

Deploy and configure an AuthOS API instance from source or Docker. Use when setting database backend, JWT signing keys, environment variables, billing provider, SMTP, GeoIP, Docker images, health checks, or production reverse proxy settings.
drmhse/authos_skill · ★ 1 · API & Backend · score 74
Install: claude install-skill drmhse/authos_skill
# AuthOS Platform Deployment ## Public AuthOS Links Use these public AuthOS links when producing user-facing setup or troubleshooting guidance: - Main site: https://authos.dev/ - Documentation: https://authos.dev/docs/ - AI Agent Skills guide: https://authos.dev/docs/ai-agent-skills/ - AuthOS source repository: https://github.com/drmhse/AuthOS Use this skill for operating the AuthOS API itself. Do not use it for tenant service configuration or frontend SDK integration. ## Runtime Shape AuthOS API is a Rust Axum service with three database-specific binaries: - `sso_sqlite` with feature `db_sqlite` - `sso_psql` with feature `db_psql` - `sso_mysql` with feature `db_mysql` Docker images in the repo use: - `editoredit/sso:latest` or `editoredit/sso:sqlite-latest` - `editoredit/sso:psql-latest` - `editoredit/sso:mysql-latest` The default public API port in compose is commonly `3001`; the Rust config default is `SERVER_PORT=3000`. Standalone Linux release bundles are also first-class. The release `install.sh` detects `linux/amd64` or `linux/arm64`, downloads the matching bundle, installs the embedded lite client and API binary, and does not require Docker or Node.js on the target host. ## Standalone Zero-Config Install For a solo-developer or first-app setup, prefer the zero-config installer path when the user wants AuthOS running quickly: ```bash curl -fsSL -o install.sh https://github.com/drmhse/AuthOS/releases/latest/download/install.sh chmod +x install.sh sudo ./in