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
You can also disable these options for all JupyterLab builds by adding these
105
-
lines to a Jupyter config file named `jupyter_config.py`:
104
+
You can also disable these options for all ElixirNote builds by adding these
105
+
lines to a Elixir config file named `elixir_config.py`:
106
106
107
107
c.LabBuildApp.minimize = False
108
108
c.LabBuildApp.dev_build = False
109
109
110
-
If you don't already have a `jupyter_config.py` file, you can create one by
111
-
adding a blank file of that name to any of the Jupyter config directories.
110
+
If you don't already have a `elixir_config.py` file, you can create one by
111
+
adding a blank file of that name to any of the Elixir config directories.
112
112
The config directories can be listed by running:
113
113
114
-
jupyter --paths
114
+
elixir --paths
115
115
116
116
Explanation:
117
117
@@ -123,7 +123,7 @@
123
123
build is used in all circumstances.
124
124
125
125
- `minimize`: This option controls whether your JS bundle is minified
126
-
during the Webpack build, which helps to improve JupyterLab's overall
126
+
during the Webpack build, which helps to improve ElixirNote's overall
127
127
performance. However, the minifier plugin used by Webpack is very memory
128
128
intensive, so turning it off may help the build finish successfully in
129
129
low-memory environments.
@@ -133,10 +133,10 @@
133
133
classLabBuildApp(JupyterApp, DebugLogFileMixin):
134
134
version=version
135
135
description="""
136
-
Build the JupyterLab application
136
+
Build the ElixirNote application
137
137
138
-
The application is built in the JupyterLab app directory in `/staging`.
139
-
When the build is complete it is put in the JupyterLab app `/static`
138
+
The application is built in the ElixirNote app directory in `/staging`.
139
+
When the build is complete it is put in the ElixirNote app `/static`
140
140
directory, where it is used to serve the application.
141
141
"""
142
142
aliases=build_aliases
@@ -149,13 +149,14 @@ class LabBuildApp(JupyterApp, DebugLogFileMixin):
149
149
150
150
name=Unicode("ElixirNote", config=True, help="The name of the built application")
151
151
152
-
version=Unicode("", config=True, help="The version of the built application")
152
+
# version = Unicode("", config=True, help="The version of the built application")
153
153
154
154
dev_build=Bool(
155
155
None,
156
156
allow_none=True,
157
157
config=True,
158
-
help="Whether to build in dev mode. Defaults to True (dev mode) if there are any locally linked extensions, else defaults to False (production mode).",
158
+
help="Whether to build in dev mode. Defaults to True (dev mode) if there are any locally linked extensions, "
159
+
"else defaults to False (production mode).",
159
160
)
160
161
161
162
minimize=Bool(
@@ -176,7 +177,7 @@ def start(self):
176
177
core_config=self.core_config,
177
178
splice_source=self.splice_source,
178
179
)
179
-
self.log.info("JupyterLab %s", version)
180
+
self.log.info("ElixirNote %s", version)
180
181
withself.debug_logging():
181
182
ifself.pre_clean:
182
183
self.log.info("Cleaning %s"%app_dir)
@@ -225,7 +226,7 @@ class LabCleanAppOptions(AppOptions):
225
226
classLabCleanApp(JupyterApp):
226
227
version=version
227
228
description="""
228
-
Clean the JupyterLab application
229
+
Clean the ElixirNote application
229
230
230
231
This will clean the app directory by removing the `staging` directories.
231
232
Optionally, the `extensions`, `settings`, and/or `static` directories,
@@ -269,7 +270,7 @@ def start(self):
269
270
classLabPathApp(JupyterApp):
270
271
version=version
271
272
description="""
272
-
Print the configured paths for the JupyterLab application
273
+
Print the configured paths for the ElixirNote application
273
274
274
275
The application path can be configured using the JUPYTERLAB_DIR
0 commit comments