# Export just the configurationlc export config --type config-only# This exports:# - Service selections# - Port configurations# - Model choices# - Resource limits
# Export as Docker Compose filelc export docker-compose --output docker-compose.yml# This creates a portable Docker setup# that can run without LocalCloud CLI
# Export configuration to gitlc export git --repo https://github.com/user/localcloud-configs# Commit configuration changeslc export git-commit --message "Updated AI model to llama3.2"
# On old machine: export everythinglc export project --include-models --output full-backup.tar.gz# On new machine: install LocalCloud and importlc import full-backup.tar.gz
# Export without sensitive informationlc export config --exclude-secrets --exclude-passwords# What gets excluded:# - Database passwords# - API keys# - Private keys# - User data