From a142876a4e4c22a9034e1dc81554c8eb57f0d805 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Sun, 17 Dec 2023 13:05:19 -0800 Subject: [PATCH] docs: Remove non-actionable step from developer setup I just went through these with @jmunroe, and found the db step a little confusing - there is no action to really be taken here, as pretty much everyone just uses sqlite for development (and even production). So I've just removed that step, as python almost always ships with sqlite built into it. --- docs/source/contributing/setup.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/docs/source/contributing/setup.md b/docs/source/contributing/setup.md index 506e5c710d..a00cc13163 100644 --- a/docs/source/contributing/setup.md +++ b/docs/source/contributing/setup.md @@ -98,20 +98,13 @@ a more detailed discussion. python3 -m pip install --editable ".[test]" ``` -5. Set up a database. - - The default database engine is `sqlite` so if you are just trying - to get up and running quickly for local development that should be - available via [Python](https://docs.python.org/3.5/library/sqlite3.html). - See [The Hub's Database](hub-database) for details on other supported databases. - -6. You are now ready to start JupyterHub! +5. You are now ready to start JupyterHub! ```bash jupyterhub ``` -7. You can access JupyterHub from your browser at +6. You can access JupyterHub from your browser at `http://localhost:8000` now. Happy developing!