====================== Configuration Overview ====================== As NbClassic is a Jupyter Server Extension that is intended as an intermediary project while users migrate from Notebook 6 to Notebook 7, this document makes references to configuration files carried over from the classic Jupyter Notebook which will be executed when running nbclassic. For more general documentation regarding the Jupyter Server that NbClassic uses please visit the `Jupyter Server documentation `_. Beyond the default configuration settings, you can configure a rich array of options to suit your workflow. Here are areas that are commonly configured when using Jupyter NbClassic: - :ref:`Jupyter's common configuration system ` - :ref:`NbClassic server ` - :ref:`NbClassic front-end client ` - :ref:`Notebook extensions ` Let's look at highlights of each area. .. _configure_common: Jupyter's Common Configuration system ------------------------------------- Jupyter applications, from the Notebook to JupyterHub to nbgrader, share a common configuration system. The process for creating a configuration file and editing settings is similar for all the Jupyter applications. - `Jupyter’s Common Configuration Approach `_ - `Common Directories and File Locations `_ - `Language kernels `_ - `traitlets `_ provide a low-level architecture for configuration. .. _configure_nbserver: NbClassic Server ---------------- The NbClassic server runs the language kernel and communicates with the front-end NbClassic client (i.e. the familiar notebook interface). - Configuring the NbClassic server To create a ``jupyter_notebook_config.py`` file in the ``.jupyter`` directory, with all the defaults commented out, use the following command:: $ jupyter nbclassic --generate-config :ref:`Command line arguments for configuration ` settings are documented in the configuration file and the user documentation. - Review the section: :ref:`Running a Notebook server ` - Related: `Configuring a language kernel `_ to run in the Notebook server enables your server to run other languages, like R or Julia. .. _configure_nbclient: NbClassic front-end client -------------------------- .. toctree:: :maxdepth: 2 frontend_config .. _configure_nbextensions: Notebook extensions ------------------- - `Distributing Jupyter Extensions as Python Packages `_ - `Extending the Notebook `_ :ref:`Security in Jupyter notebooks: ` Since security policies vary from organization to organization, we encourage you to consult with your security team on settings that would be best for your use cases. Our documentation offers some responsible security practices, and we recommend becoming familiar with the practices.