Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/deploy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,20 @@ High level instructions, specific to Voilà can be found below:

.. code:: text

python-3.9.9
python-3.10.4

3. Add a file named Procfile to the project directory with the
following content if you want to show all notebooks:

.. code:: text

web: voila --port=$PORT --no-browser
web: voila --port=$PORT --no-browser --Voila.ip=0.0.0.0

Or the following if you only want to show one notebook:

.. code:: text

web: voila --port=$PORT --no-browser your_notebook.ipynb
web: voila --port=$PORT --no-browser --Voila.ip=0.0.0.0 your_notebook.ipynb

4. Initialize your git repo and commit your code. At minimum you need to commit
your notebooks, requirements.txt, runtime.txt, and the Procfile.
Expand Down