https://github.com/davidbrochart/microverse
In-browser JupyterLab powered by Jupyverse
https://github.com/davidbrochart/microverse
Last synced: 17 days ago
JSON representation
In-browser JupyterLab powered by Jupyverse
- Host: GitHub
- URL: https://github.com/davidbrochart/microverse
- Owner: davidbrochart
- License: bsd-3-clause
- Created: 2025-05-08T16:48:59.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-12-03T12:52:52.000Z (2 months ago)
- Last Synced: 2026-01-06T11:53:54.334Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 180 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Microverse
In-browser JupyterLab powered by [Jupyverse](https://github.com/jupyter-server/jupyverse).
:warning: microverse doesn't work in Firefox due to [request body](https://developer.mozilla.org/en-US/docs/Web/API/Request/body) not being supported (see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1387483)).
## Usage
The [environment](https://github.com/davidbrochart/microverse/tree/main/environment) directory consists of:
- an [environment.yml](https://github.com/davidbrochart/microverse/blob/main/environment/environment.yml) file where you can add packages used at runtime.
- a [contents](https://github.com/davidbrochart/microverse/tree/main/environment/contents) directory where you can add files and directories used at runtime.
## Local deployment
- Install [micromamba](https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html).
- Create an environment and activate it:
```bash
micromamba create -n microverse
micromamba activate microverse
```
- Install `pip` and `empack`:
```bash
micromamba install pip empack
```
- Install `microverse`:
```bash
pip install -e .
```
- Run `microverse`:
```bash
microverse --serve
```
A server should be running at http://127.0.0.1:8000.
## GitHub pages deployment
The `main` branch is deployed on GitHub pages at [https://davidbrochart.github.io/microverse/](https://davidbrochart.github.io/microverse/).