forked from DougTrajano/mlflow-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.19 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "mlflow-server",
"description": "MLflow Tracking Server with basic authentication (user/password).",
"logo": "https://avatars.githubusercontent.com/u/39938107?v=4",
"keywords": [
"machine learning",
"data science",
"machinelearning",
"mlflow",
"experiment tracking"
],
"repository": "https://github.com/DougTrajano/mlflow-server",
"stack": "container",
"success_url": "/",
"env": {
"MLFLOW_TRACKING_USERNAME": {
"description": "Username for MLflow UI and API.",
"value": "mlflow"
},
"MLFLOW_TRACKING_PASSWORD": {
"description": "Password for MLflow UI and API.",
"value": "mlflow"
},
"MLFLOW_ARTIFACT_URI": {
"description": "URI for mlflow artifacts",
"value": "./mlruns"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key ID",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret access key",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}