Skip to content

jthinking/OllamaOne

Repository files navigation

OllamaOne

Ollama UI App

screenshot

Features

  • Generate a chat completion
  • List Local Models
  • Delete a Model
  • Pull a Model

Develop

sea-orm-cli migrate generate create_config_table

sea-orm-cli migrate fresh

rm -rf entity/src/*

sea-orm-cli generate entity -o entity/src --lib --with-serde both

Build


export TAURI_PRIVATE_KEY="content of the generated key"
export TAURI_KEY_PASSWORD="password"
  • aarch64
cd src-tauri
cargo build --release --target aarch64-apple-darwin
cd ..


yarn tauri build --target aarch64-apple-darwin

  • x86_64
cargo build --release --target x86_64-apple-darwin
cd ..
yarn tauri build --target x86_64-apple-darwin

Install the dependencies

yarn
# or
npm install

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Lint the files

yarn lint
# or
npm run lint

Format the files

yarn format
# or
npm run format

Build the app for production

quasar build

Customize the configuration

See Configuring quasar.config.js.