Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rviso/tauri-monorepo-template
This is a template for creating a monorepo with Tauri, Vite, Vue, and TypeScript.
https://github.com/rviso/tauri-monorepo-template
rust tauri typescript vite vue3
Last synced: about 1 month ago
JSON representation
This is a template for creating a monorepo with Tauri, Vite, Vue, and TypeScript.
- Host: GitHub
- URL: https://github.com/rviso/tauri-monorepo-template
- Owner: rviso
- License: apache-2.0
- Created: 2024-05-19T10:42:59.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T11:51:53.000Z (9 months ago)
- Last Synced: 2024-05-19T12:41:20.291Z (9 months ago)
- Topics: rust, tauri, typescript, vite, vue3
- Language: Rust
- Homepage:
- Size: 271 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tauri-monorepo-template
This is a template for a monorepo using packages for a Tauri project.
## Features
- [Tauri](https://tauri.studio/)
- [pnpm](https://pnpm.io/)
- [TypeScript](https://www.typescriptlang.org/)
- [ESLint](https://eslint.org/)
- [Prettier](https://prettier.io/)
- [Vitest](https://vitest.dev/)
- [Tailwind CSS](https://tailwindcss.com/)
- [Vite](https://vitejs.dev/)
- [Vue 3](https://v3.vuejs.org/)## Getting started
1. Clone this repository
```bash
git clone https://github.com/rviso/tauri-monorepo-template
```2. Install dependencies
```bash
# Install dependencies for the monorepo
pnpm install```
3. Start the development server
```bash
pnpm run dev
```4. Build the project
```bash
# Build the project
pnpm run build```