-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switched to local env variables
- Loading branch information
1 parent
b6690de
commit de4fc83
Showing
3 changed files
with
24 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
GITHUB_REGISTRY_ACCESS_TOKEN=<your_github_access_token> | ||
GHCR_PERSONAL_ACCESS_TOKEN=g<your_github_personal_access_token> | ||
AWS_ACCESS_KEY_ID=<aws_s3_user_access_key_id> | ||
AWS_SECRET_ACCESS_KEY=<aws_s3_user_access_key_secret> | ||
BUCKET_NAME=<s3_bucket_name> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# How to start the mlfluw ui | ||
|
||
- Create a classic personal access token in your github developer settings (it only needs the read packages permission) and paste it to .env | ||
- Run 'make setiup_mlflow_ui' to setup the docker container | ||
- Add the aws key id and secrret and the bucket name to the .env file | ||
- Run 'make start_mlflow_ui' to start the docker container | ||
- Access the mlflow ui at localhost:4444 | ||
- Run 'make stop_mlflow_ui' to stop the docker container | ||
- Run 'make 'remove_mlflow_ui' to delete the docker container and the image |