-
Notifications
You must be signed in to change notification settings - Fork 25
voila mode #277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
voila mode #277
Conversation
deploying voila with no requirements.txt file results in an error It seems when deploying voila content we aren't running
|
When deploying voila from a directory where no voila content exists an internal error is thrown In this example, I was mistakenly in the parent directory which contained only two folders and no voila content. When I deployed I hit the following error:
|
inaccurate error text when re-deploying a mis-matched content type re-deploying voila content where a pre-existing
content of the rsconnect-python/*.json file:
|
fixed by 564e82a
fixed by 6fdc811
fixed by 0eab04a |
The deploy voila help page mentions
I think we can get rid of the second sentence and maybe add something about being able to deploy with customizations by adding a |
rsconnect version: 1.10.1.dev19+g26be70b rsconnect write-manifest requires a filename when it shouldn't. The following command should be able to write a manifest, but instead we're looking for a filename.
|
Invalid or missing themes cause the notebook to fail to render. I saw in the example that there's a When using an invalid theme, can we display this error in the dashboard?
Full Error:
|
Can we make sure that consistent with the other frameworks, calling |
|
Fixed by 8311a1e, which also fixes #277 (comment)
fixed by 0165f23 |
Specifying multiple files using
Is mutli-notebook mode supported when using file deployment rather than directory deployment? |
Multi-notebook mode is not supported using file deployment. It must be directory deployment per requirement 1) in the exception message. |
happened when path and entrypoint were provided and there were multiple notebooks in the deploy_dir
Most of the time this should raise exception. Adding this line should at least allow the bundle to be created.
Voila deployments from rsconnect-jupyter includes all files in the directory by default. In other notebooks you have to specify which files to include using the Additional Files dialog. This seems to be publishing as directory rather than by file, is that expected? Plugin versions:
Files deployed when deploying as voila:
Files deployed when deploying the same notebook as a jupyter notebook:
|
Currently in the CLI we make the following distinction:
@mmarchetti from
to just:
|
I made the change to deploy in single file mode. |
Verified rsconnect-jupyter now deploys single file mode. |
Description
Add support for Voila
fixes #22006
fixes #22049
fixes #22047