{"id":24373334,"url":"https://github.com/endothedev/ollamoma-v2","last_synced_at":"2025-08-16T19:07:15.324Z","repository":{"id":271249601,"uuid":"912839942","full_name":"EndoTheDev/OllaMoMa-v2","owner":"EndoTheDev","description":"A modern web interface for Ollama, built with Nuxt 3 and Vue. Features a clean UI with dark/light modes, model management (copy/rename/delete), customizable themes, and a responsive layout. Designed for easy interaction with your local Ollama instance.","archived":false,"fork":false,"pushed_at":"2025-01-18T06:39:54.000Z","size":639,"stargazers_count":7,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-24T16:11:10.014Z","etag":null,"topics":["ai","chat-app","composition-api","docker","llm","nuxt3","nuxtui-v3","ollama","pinia","tailwindcss","typescript","vitest","vue3-typescript","web-app"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EndoTheDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-06T13:56:54.000Z","updated_at":"2025-02-27T23:45:59.000Z","dependencies_parsed_at":"2025-01-06T15:25:24.667Z","dependency_job_id":"cfd1e4e7-4a4a-49f8-83aa-f7408a93d9db","html_url":"https://github.com/EndoTheDev/OllaMoMa-v2","commit_stats":null,"previous_names":["endothedev/ollamoma-v2"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndoTheDev%2FOllaMoMa-v2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndoTheDev%2FOllaMoMa-v2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndoTheDev%2FOllaMoMa-v2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndoTheDev%2FOllaMoMa-v2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EndoTheDev","download_url":"https://codeload.github.com/EndoTheDev/OllaMoMa-v2/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248271812,"owners_count":21075800,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","chat-app","composition-api","docker","llm","nuxt3","nuxtui-v3","ollama","pinia","tailwindcss","typescript","vitest","vue3-typescript","web-app"],"created_at":"2025-01-19T05:10:47.928Z","updated_at":"2025-04-10T18:32:12.043Z","avatar_url":"https://github.com/EndoTheDev.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OllaMoMa v2\n\n\u003e A modern web interface for interacting with Ollama models, built with Nuxt 3 and Nuxt UI v3.\n\u003e\n\u003e ⚠️ **Work in Progress**: This project is under active development.\n\n## 🌟 Features\n\n- 🎨 Interactive Chat Interface\n  - Real-time streaming responses\n  - Multiple model support\n  - Clear conversation history\n- 🤖 Model Management\n  - View and manage Ollama models\n  - Search and sort functionality\n  - Detailed model information\n- 🎨 Modern UI with Nuxt UI v3\n  - Dark/Light mode with theme customization\n  - Responsive design for all devices\n  - Customizable UI elements\n- ⚡ Performance Focused\n  - Fast and responsive interface\n  - Efficient model handling\n  - Type-safe development\n\n## 🛠️ Tech Stack\n\n- **Frontend Framework**: [Nuxt 3](https://nuxt.com/)\n- **UI Components**: [Nuxt UI v3](https://ui.nuxt.com/)\n- **Styling**: [Tailwind CSS](https://tailwindcss.com/)\n- **State Management**: [Pinia](https://pinia.vuejs.org/)\n- **Utilities**: [VueUse](https://vueuse.org/)\n- **LLM Backend**: [Ollama](https://ollama.ai/)\n\n## 📋 Prerequisites\n\nBefore you begin, ensure you have:\n- Node.js (v18+)\n- Ollama installed and running locally\n- Git for version control\n- Docker (optional, for containerized deployment)\n\n## 🚀 Quick Start\n\n### Local Development\n\n1. **Clone and Install**\n   ```bash\n    # Clone the repository\n    git clone https://github.com/EndoTheDev/OllaMoMa-v2.git\n    cd OllaMoMa-v2\n    # Install dependencies\n    npm install  # or pnpm install / yarn install / bun install\n   ```\n\n2. **Start Development Server**\n   ```bash\n    npm run dev  # or pnpm dev / yarn dev / bun run dev\n   ```\n\n3. **Configure Ollama**\n   - Default settings: host: 127.0.0.1, port: 11434\n   - Adjust in application settings if needed\n\n### Docker Deployment\n\n1. **Using Docker**\n   ```bash\n    # Clone the repository\n    git clone https://github.com/EndoTheDev/OllaMoMa-v2.git\n    cd OllaMoMa-v2\n    # Build the image\n    docker build -t ollamoma-v2 .\n    # Run the container\n    docker run -d -p 3000:3000 --name ollamoma ollamoma-v2\n   ```\n\n2. **Using Docker Compose**\n   ```bash\n    # Clone the repository\n    git clone https://github.com/EndoTheDev/OllaMoMa-v2.git\n    cd OllaMoMa-v2\n    # Start the application\n    docker compose up -d\n    # Stop the application\n    docker compose down\n   ```\n\n3. **Important Docker Notes**\n   - Ensure Ollama is running on your host machine\n   - For Windows/macOS: Use `host.docker.internal` instead of `localhost`\n   - For Linux: Use your host machine's IP address\n\n## 📚 Documentation\n\nDetailed documentation is available in the [docs](./docs) directory:\n\n- **Getting Started**\n  - [Installation Guide](./docs/getting-started/installation.md)\n  - [Development Guide](./docs/getting-started/development.md)\n\n- **Features**\n  - [Chat Interface](./docs/pages/index.md)\n  - [Model Management](./docs/pages/models.md)\n  - [Model File Management](./docs/pages/modelfile.md)\n  - [Settings](./docs/pages/settings.md)\n\n## 🏗️ Project Structure\n\n```\n.\n├── assets/          # Static assets\n├── components/      # Vue components\n│    ├── app/        # App components\n│    │    ├── chat/       # Chat components \n│    │    ├── modelfile/  # Modelfile components\n│    │    ├── models/     # Models components\n│    │    └── settings/   # Settings components\n│    ├── base/       # Base components\n│    └── ui/         # UI components\n├── composables/     # Vue composables\n├── docs/           # Documentation\n├── pages/          # File-based routing\n├── server/         # Server API routes\n├── stores/         # Pinia stores\n├── tests/          # Test files\n└── types/          # TypeScript types\n```\n\n## 📝 Roadmap\n\n### Current Progress\n- ✅ Core Features\n  - ✅ Chat interface with streaming\n  - ✅ Model management\n  - ✅ Theme customization\n  - ✅ Settings management\n\n### Upcoming Features\n- 🔄 LangChain integration\n- 📊 Knowledge graph visualization\n- 🎨 Enhanced theme customization\n  - Color picker\n  - Border radius settings\n- 🗃️ Database/Files management\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our [Development Guide](./docs/getting-started/development.md) for details on:\n- Setting up your development environment\n- Our coding standards\n- The contribution workflow\n- Testing requirements\n\n## 📄 License\n\nThis project is licensed under the MIT License.\n\n---\nBuilt with ❤️ by EndoTheDev using [Nuxt 3](https://nuxt.com/) and [Nuxt UI v3](https://ui.nuxt.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendothedev%2Follamoma-v2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fendothedev%2Follamoma-v2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendothedev%2Follamoma-v2/lists"}