CLI Reference
The AeThex command-line interface for project management and deployment.
Installation
npm install -g @aethex/cli
# or
brew install aethex
Authentication
# Login to your account
aethex login
# Check auth status
aethex whoami
# Logout
aethex logout
Project Management
# Create a new project
aethex init my-project
# List your projects
aethex projects list
# Switch project
aethex projects use my-project
Deployment
# Deploy to production
aethex deploy
# Deploy to staging
aethex deploy --env staging
# View deployment logs
aethex logs --follow
Development
# Start local dev server
aethex dev
# Run database migrations
aethex migrate
# Generate types from schema
aethex codegen