Skip to content

Latest commit

 

History

History
114 lines (79 loc) · 1.45 KB

File metadata and controls

114 lines (79 loc) · 1.45 KB

Quick Ling Setup

VERSION 0.1

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Ollama Setup (Optional)

To use the translation service, you need to have Ollama installed and the translategemma model loaded.

Installing Ollama

Linux and macOS

# Add Ollama repository
curl -fsSL https://ollama.com/install.sh | sh

Windows (PowerShell)

# Download and install
irm https://ollama.com/install.ps1 | iex

Pulling the TranslateGemma Model

After installing Ollama, pull the translategemma model:

# Pull the translation model
ollama pull translategemma:latest

For specific model versions:

# Pull a specific version
ollama pull translategemma:12b

Running Ollama Server

Start the Ollama server (runs on localhost:11434 by default):

ollama serve

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.