https://github.com/clevercloud/ollama-chat-deploy-example
Deploy AI models on Clever Cloud with Ollama
https://github.com/clevercloud/ollama-chat-deploy-example
ai clevercloud-example ollama
Last synced: 4 months ago
JSON representation
Deploy AI models on Clever Cloud with Ollama
- Host: GitHub
- URL: https://github.com/clevercloud/ollama-chat-deploy-example
- Owner: CleverCloud
- Created: 2023-11-27T08:05:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-18T10:45:11.000Z (over 1 year ago)
- Last Synced: 2026-02-11T11:38:14.487Z (4 months ago)
- Topics: ai, clevercloud-example, ollama
- Language: Shell
- Homepage:
- Size: 262 KB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ollama Chat Deploy
Deploy AI models on Clever Cloud with [Ollama](https://github.com/ollama/ollama). You'll need a [Clever Cloud account](https://console.clever-cloud.com/) and [Clever Tools](https://github.com/CleverCloud/clever-tools).
## Setup Clever Tools
```bash
npm i -g clever-tools
clever login
```
## Init the project
```bash
git clone https://github.com/CleverCloud/ollama-chat-deploy.git
cd ollama-chat-deploy
./project_init.sh
```
## Create and configure the application on Clever Cloud
```bash
clever create --type node
clever scale --flavor L
clever env import < .env
```
## Deploy on Clever Cloud
```bash
git add . && git commit -m "Init application"
clever deploy
clever open
```
Learn more about this project in our [dedicated blog post](https://www.clever-cloud.com/blog/engineering/2023/11/27/deploy-llama-mistral-openchat-or-your-own-model-on-clever-cloud/).