Skip to content

Commit 753aff2

Browse files
authored
Update README.md
Update deploying a bento
1 parent bd4948b commit 753aff2

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

README.md

+25-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,31 @@ You can use Swagger UI to quickly explore the available endpoints of any BentoML
9292
![Swagger UI](images/swagger.png)
9393

9494

95-
## 🚀 Bringing it to Production 🚀
96-
BentoML offers a number of options for deploying and hosting online ML services into production, learn more at [Deploying Bento Docs](https://docs.bentoml.org/en/latest/concepts/deploy.html).
95+
## 🚀 Deploying to Production 🚀
96+
Effortlessly transition your project into a production-ready application using [BentoCloud](https://www.bentoml.com/bento-cloud/), the production-ready platform for managing and deploying machine learning models.
97+
98+
Start by creating a BentoCloud account. Once you've signed up, log in to your BentoCloud account using the command:
99+
100+
```bash
101+
bentoml cloud login --api-token <your-api-token> --endpoint <bento-cloud-endpoint>
102+
```
103+
> Note: Replace `<your-api-token>` and `<bento-cloud-endpoint>` with your specific API token and the BentoCloud endpoint respectively.
104+
105+
Next, build your BentoML service using the `build` command:
106+
107+
```bash
108+
bentoml build
109+
```
110+
111+
Then, push your freshly-built Bento service to BentoCloud using the `push` command:
112+
113+
```bash
114+
bentoml push <name:version>
115+
```
116+
117+
Lastly, deploy this application to BentoCloud with a single `bentoml deployment create` command following the [deployment instructions](https://docs.bentoml.org/en/latest/reference/cli.html#bentoml-deployment-create).
118+
119+
BentoML offers a number of options for deploying and hosting online ML services into production, learn more at [Deploying a Bento](https://docs.bentoml.org/en/latest/concepts/deploy.html).
97120

98121
## 👥 Community 👥
99122
BentoML has a thriving open source community where thousands of ML/AI practitioners are

0 commit comments

Comments
 (0)