JavaScript SDK
Managing Applications
In this section, you will learn how to manage your application using the available library. You can interact with your application in various ways, such as obtaining information about the application status, accessing logs, starting, stopping, and restarting the application, as well as managing files associated with it.
Getting the status of your application
application.getStatus()
return a ApplicationStatus
class.
Getting logs
application.getLogs()
return a String.
Starting the application
application.start()
return a Boolean.
Stopping the application
application.stop()
return a Boolean.
Restarting the application
application.restart()
return a Boolean.
Deleting an application
application.delete()
return a Boolean.
This will delete your application PERMANENTLY, meaning that unless you have a backup of your application, it cannot be recovered.
Was this page helpful?