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
Copy file name to clipboardExpand all lines: README-development.md
+54-17Lines changed: 54 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,22 @@ The target audience for this README is developers wanting to contribute to `OCI
7
7
python3 -m pip install -r dev-requirements.txt
8
8
```
9
9
10
+
# Generating the wheel
11
+
The OCI MLflow plugins are packaged as a wheel. To generate the wheel, you can run:
12
+
13
+
```
14
+
make dist
15
+
```
16
+
17
+
Alternatively you can run -
18
+
19
+
```
20
+
python setup.py bdist_wheel
21
+
```
22
+
23
+
This wheel can then be installed using pip.
24
+
25
+
10
26
## Setting Up Tracking Server
11
27
12
28
Create a file called `.env` in the root folder of the project with following contents -
@@ -25,12 +41,14 @@ BACKEND_PROVIDER=sqllite
25
41
# ------MySQL-----------------------
26
42
# BACKEND_PROVIDER=mysql
27
43
28
-
# The database credentials can be stored in the Vault service, or they can be provided in the config. See more details how to save the credentials to the Vault - https://accelerated-data-science.readthedocs.io/en/latest/user_guide/secrets/mysql.html
44
+
# The database credentials can be stored in the Vault service, or they can be provided in the config.
45
+
# See more details how to save the credentials to the Vault -
0 commit comments