Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardmarx authored Apr 22, 2024
1 parent 96d79e5 commit 92d5cbd
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,21 @@ Once Artifactory has started, navigate to the default URL ```http://localhost:80
pip install imr
```

#### setup
#### list

coming soon

To list all models available in the local repository, execute the command ```imr local list```:
```
imr local list
```

To list all models available in the remote, execute the command ```imr remote list -h REPO -u USER -p PASSWORD```:
- ```REPO``` repository url i.e. ```http://localhost:8081```
- ```USER``` user
- ```PASSWORD``` password
```
imr remote list -h http://localhost:8081 -u user -p password
```

#### push

Expand All @@ -63,6 +74,8 @@ imr local push DIRECTORY org.company.department.project.function.mymodel -v v0.0

To publish the model in a remotely repository, execute the command ```imr remote push -h REPO -u USER -p PASSWORD DIRECTORY PACKAGE -v VERSION```:
- ```REPO``` repository url i.e. ```http://localhost:8081```
- ```USER``` user
- ```PASSWORD``` password
- ```DIRECTORY``` of the model
- ```PACKAGE``` used to identify the model i.e ```org.company.department.project.function.mymodel```
- ```VERSION``` optionally (default latest)
Expand All @@ -82,6 +95,8 @@ imr local path org.company.department.project.function.mymodel -v v0.0.1

To publish the model in a remotely repository execute the command ```imr remote path -h REPO -u USER -p PASSWORD PACKAGE -v VERSION```:
- ```REPO``` repository url i.e. ```http://localhost:8081```
- ```USER``` user
- ```PASSWORD``` password
- ```PACKAGE``` used to identify the model i.e ```org.company.department.project.function.mymodel```
- ```VERSION``` optionally (default latest)
```
Expand All @@ -100,6 +115,8 @@ imr local rm org.company.department.project.function.mymodel -v v0.0.1

To publish the model in a remotely repository execute the command ```imr remote push -h REPO -u USER -p PASSWORD DIRECTORY PACKAGE -v VERSION```:
- ```REPO``` repository url i.e. ```http://localhost:8081```
- ```USER``` user
- ```PASSWORD``` password
- ```PACKAGE``` used to identify the model i.e ```org.company.department.project.function.mymodel```
- ```VERSION``` optionally (default latest)
```
Expand Down

0 comments on commit 92d5cbd

Please sign in to comment.