mirror of
https://github.com/Toumash/mlflow-docker
synced 2025-11-04 15:19:21 +01:00
feat(bash): adds bash script generators
This commit is contained in:
12
bashrc_install.sh
Normal file
12
bashrc_install.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
source .env
|
||||
|
||||
echo "# MLFLOW CONFIG" >> ~/.bashrc
|
||||
echo "export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID" >> ~/.bashrc
|
||||
echo "export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY" >> ~/.bashrc
|
||||
echo "export MLFLOW_S3_ENDPOINT_URL=$MLFLOW_S3_ENDPOINT_URL" >> ~/.bashrc
|
||||
echo "export MLFLOW_TRACKING_URI=$MLFLOW_TRACKING_URI" >> ~/.bashrc
|
||||
echo "# END MLFLOW CONFIG" >> ~/.bashrc
|
||||
|
||||
echo "[ OK ] Successfully installed environment variables into your .bashrc!"
|
||||
Reference in New Issue
Block a user