mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
Add docs with mkdocs
There isn't going to be much code generation here, so let's start with mkdocs and see if it is good enough for us!
This commit is contained in:
32
docs/install.md
Normal file
32
docs/install.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# Installation
|
||||
|
||||
## Quick Installation
|
||||
The quick way to install The Littlest JupyterHub (tljh) is:
|
||||
|
||||
```bash
|
||||
curl https://raw.githubusercontent.com/yuvipanda/the-littlest-jupyterhub/master/installer/install.bash | sudo bash -
|
||||
```
|
||||
|
||||
This takes 2-5 minutes to run. When completed, you can access your new JupyterHub
|
||||
at the public IP of your server!
|
||||
|
||||
## Slightly less quick installation
|
||||
|
||||
If you can read `bash` and are nervous about the previous installation method,
|
||||
you can inspect the installer script before running it.
|
||||
|
||||
1. Download the installer script
|
||||
|
||||
```bash
|
||||
curl https://raw.githubusercontent.com/yuvipanda/the-littlest-jupyterhub/master/installer/install.bash -o install.bash
|
||||
```
|
||||
|
||||
2. Read the install script source using your favorite text editor
|
||||
|
||||
3. Run the installer script
|
||||
|
||||
```bash
|
||||
sudo install.bash
|
||||
```
|
||||
|
||||
This should have the exact same effects as the quick installer method.
|
||||
Reference in New Issue
Block a user