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