Skip to main content
All operations below can be performed by either the Client class, the Application class and the CLI. Below are examples of how to perform each of these tasks using both classes:

Getting the status of your application

client.app_status and app.status return a StatusData object.

Getting logs

client.get_logs and app.logs return a LogsData object.

Starting the application

client.start_app and app.start return a Response object.

Stopping the application

client.stop_app and app.stop return a Response object.

Restarting the application

client.restart_app and app.restart return a Response object.

Deleting an application

client.delete_app and app.delete return a Response object.
This will delete your application PERMANENTLY, meaning that unless you have a backup of your application, it cannot be recovered.