File tree 1 file changed +22
-5
lines changed
1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,30 @@ The front-end is configured to proxy requests to the local API server. It
25
25
requires an environment variable (` KF_USER_ID ` ) to specify the current user –
26
26
this is passed to the API server as an HTTP header.
27
27
28
- 1 . Change directory to front-end folder: ` cd frontend `
29
- 2 . Install dependencies: ` npm install `
30
- 3 . Run the front-end ` KF_USER_ID=<cloud_email> npm start `
31
28
32
- The front-end is now available at ` http://localhost:4200/jupyter/ ` . Since it is
29
+ The following can be pasted in a script and executed.
30
+ ** NOTE** : ` user ` is when using vagrant. Use the email adress if it is the dev cluser (please never connect to prod directly)
31
+ ```
32
+ cd frontend/common/kubeflow-common-lib
33
+ npm i
34
+ npm run build
35
+ cd dist/kubeflow
36
+ npm link
37
+
38
+ cd ../../../../jupyter
39
+ npm i
40
+ npm link kubeflow
41
+ KF_USER_ID=user npm start
42
+ ```
43
+
44
+ ### Older instructions
45
+ 1 . ~ Change directory to front-end folder: ` cd frontend ` ~
46
+ 2 . ~ Install dependencies: ` npm install ` ~
47
+ 3 . ~ Run the front-end ` KF_USER_ID=<cloud_email> npm start ` ~
48
+
49
+ ~ The front-end is now available at ` http://localhost:4200/jupyter/ ` . Since it is
33
50
disconnected from the ` centraldashboard ` component, you need to type your
34
- desired namespace in the UI rather than selecting it from a dropdown.
51
+ desired namespace in the UI rather than selecting it from a dropdown.~
35
52
36
53
### Connecting a Kubeflow Cluster
37
54
You can’t perform that action at this time.
0 commit comments