Deploying Polyglot Notebooks to GitHub Codespaces
GitHub Codespaces allow you to use your browser to access a cloud-hosted instance of VS Code pointed at the code in a GitHub repository. This means that developers don’t need to clone code locally or install dependencies on their machines in order to interact with the code.
As a result, developers can interact with code from a variety of different machines without needing to go through the installation and setup steps. If you’d like to experiment with pre-configured codespaces, this book’s code is set up to run in your browser via GitHub Codespaces:
https://github.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks.
Let’s see how to configure GitHub Codespaces for Polyglot Notebooks
Configuring GitHub codespaces
Codespaces is a GitHub feature built on top of the concept of dev containers. Dev containers are disposable development environments that can be easily created from a...