Ploomber Cloud#

Ploomber Cloud offers a free deployment option for Panel apps. Once you create an account and log in, follow these steps for deploying using the web application:

  1. Click on the “NEW” button. You’ll find the below page:

  1. In the “Framework” section, click on Panel.

  2. In the “Source code” section, click on “Upload your files”.

  3. Upload your .zip file with the app.py and requirements.txt file.

  4. Click on “CREATE”

  5. Wait until deployment finishes. To see your app, click on the VIEW APPLICATION button.

Full instructions for deploying Panel apps are available here.

You can also deploy the panel app using the Ploomber command line interface by following the below steps:

  1. First, install the package:

pip install ploomber-cloud
  1. Get an API Key and set the key:

ploomber-cloud key YOURKEY
  1. cd into the panel app folder that you want to deploy.

  2. Initialize your project:

ploomber-cloud init
  1. This will prompt you for the project type. You need to enter panel.

  2. Once your project is configured it will generate a ploomber-cloud.json with the project info.

  3. Deploy the project by running:

ploomber-cloud deploy
  1. To view your application, login to the web application and click on the VIEW APPLICATION button.

Full instructions for deploying apps using the CLI are available here.