File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -108,25 +108,25 @@ High level instructions, specific to Voilà can be found below:
108
108
109
109
1. Follow the steps of the official documentation to install the heroku
110
110
cli and login on your machine.
111
- 2. Add a file named runtime.txt to the project directory with the following
112
- content :
111
+ 2. Add a file named runtime.txt to the project directory with a
112
+ ` valid Python runtime < https://devcenter.heroku.com/articles/python-support#supported-runtimes >`__ :
113
113
114
114
.. code :: text
115
115
116
- python-3.7.3
116
+ python-3.9.9
117
117
118
118
3. Add a file named Procfile to the project directory with the
119
119
following content if you want to show all notebooks:
120
120
121
121
.. code :: text
122
122
123
- web: voila — -port=$PORT --no-browser
123
+ web: voila - -port=$PORT --no-browser
124
124
125
125
Or the following if you only want to show one notebook:
126
126
127
127
.. code :: text
128
128
129
- web: voila —- port=$PORT — -no-browser your_notebook.ipynb
129
+ web: voila -- port=$PORT - -no-browser your_notebook.ipynb
130
130
131
131
4. Initialize your git repo and commit your code. At minimum you need to commit
132
132
your notebooks, requirements.txt, runtime.txt, and the Procfile.
You can’t perform that action at this time.
0 commit comments