You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To run Toolkit locally via Poetry during development use:
45
+
To run Toolkit locally after installation use:
46
46
47
47
```bash
48
-
#Install the package with server components
49
-
poetry install --with server
48
+
#show all available commands
49
+
deepnote-toolkit --help
50
50
51
-
#Run the CLI to see available commands
52
-
poetry run deepnote-toolkit --help
51
+
#start Jupyter server on default port (8888)
52
+
deepnote-toolkit server
53
53
54
-
#Start Jupyter server on default port (8888)
55
-
poetry run deepnote-toolkit server
54
+
#start with custom configuration
55
+
deepnote-toolkit server --jupyter-port 9000
56
56
57
-
# Start servers with custom configuration
58
-
poetry run deepnote-toolkit server --jupyter-port 9000
59
-
60
-
# View/modify configuration
61
-
poetry run deepnote-toolkit config show
62
-
poetry run deepnote-toolkit config set server.jupyter_port 9000
57
+
# view and modify configuration
58
+
deepnote-toolkit config show
59
+
deepnote-toolkit config set server.jupyter_port 9000
63
60
```
64
61
65
62
**Security Note**: The CLI will warn if Jupyter runs without authentication. For local development only. Set `DEEPNOTE_JUPYTER_TOKEN` for shared environments.
0 commit comments