jupyterlab-heroku v0.2.1
jupyterlab-heroku
JupyterLab extension to manage and deploy applications to Heroku.
The extension enables 1-click deployments of voila dashboards.

Requirements
Create an Heroku account
If you already have an Heroku account, you can skip to the next section.
You can create a new Heroku account by following these instructions: https://signup.heroku.com/
Install the heroku client
You need the heroku client installed on your machine to be able to deploy applications. To set it up:
https://devcenter.heroku.com/articles/getting-started-with-python#set-up
Once the setup is complete, test the installation with:
$ heroku --version
heroku/7.26.2 linux-x64 node-v11.14.0Login to Heroku
There are different ways to login to Heroku:
heroku loginwill open a new browser tab to log in with the email and password- create a
~/.netrcfile with the api token (see the documentation for more details) - set the
HEROKU_API_KEYenvironment variable
To test the authentication: heroku apps
Other Dependencies
This extension also requires:
- JupyterLab 1.0
git
Install
pip install jupyterlab-heroku
jupyter serverextension enable --sys-prefix --py jupyterlab_heroku
jupyter labextension install jupyterlab-herokuSince Heroku uses git to deploy applications, it is also recommended to install the jupyterlab-git extension for JupyterLab:
pip install jupyterlab-git
jupyter serverextension enable --sys-prefix --py jupyterlab_git
jupyter labextension install @jupyterlab/gitContributing
Install
# Clone the repo to your local environment
# Move to jupyterlab-heroku directory
# Create a new conda environment
conda create -n jupyterlab-heroku -c conda-forge jupyterlab nodejs
# Install the server extension
python -m pip install -e .
jupyter serverextension enable --sys-prefix --py jupyterlab_heroku
# Install dependencies
jlpm
# Build Typescript source
jlpm build
# Link your development version of the extension with JupyterLab
jupyter labextension link .
# Rebuild Typescript source after making changes
jlpm build
# Rebuild JupyterLab after making any changes
jupyter lab buildYou can watch the source directory and run JupyterLab in watch mode to watch for changes in the extension's source and automatically rebuild the extension and application.
# Watch the source directory in another terminal tab
jlpm watch
# Run jupyterlab in watch mode in one terminal tab
jupyter lab --watchUninstall
jupyter labextension uninstall jupyterlab-herokuAlternatives
To deploy Voila applications to Heroku using the command line: https://github.com/martinRenou/voila_heroku