empctl cheatsheet
register
Register a new project
empctl register --name my-project --email [email protected]services
Create a new service
empctl services init --name stringGet the list of services
empctl services getDelete a service
empctl services delete --name stringbuild
Build, deploy and push a multiplatform image
empctl build --push --deploy --tag string --file Dockerfile --multi-platform --service stringconfigs
Get the current configs and infrastructure
empctl configs getChange API token on your local config
empctl configs set-token stringdeployments
Inspect the deployment
empctl deployments getGet the logs
empctl deployments logs --service stringecr
Get the ECR repository
empctl ecr token --service stringsecrets
Update key/value
empctl secrets upsert --name my-secret --val my-secret-valueUpdate json file
empctl secrets upsert --file secrets.jsonUpdate from env file
empctl secrets upsert --file .envLast updated