https://github.com/id88/wails-vite-vue-ts-navie-pinia
A template for Wails with Vite + Vue + TypeScript + NavieUI + Pinia.
https://github.com/id88/wails-vite-vue-ts-navie-pinia
navie-ui pinia tamplete typescript vite vue3 wails
Last synced: 6 months ago
JSON representation
A template for Wails with Vite + Vue + TypeScript + NavieUI + Pinia.
- Host: GitHub
- URL: https://github.com/id88/wails-vite-vue-ts-navie-pinia
- Owner: id88
- License: mit
- Created: 2023-10-09T13:19:14.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-02T09:48:33.000Z (6 months ago)
- Last Synced: 2025-04-14T15:17:04.265Z (6 months ago)
- Topics: navie-ui, pinia, tamplete, typescript, vite, vue3, wails
- Language: Vue
- Homepage:
- Size: 306 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# README
## About
A template for Wails with Vite + Vue + TypeScript + NavieUI + Pinia.
## How to use?
1. Clone the repository:
```
git clone https://github.com/id88/wails-vite-vue-ts-navie-pinia.git
```2. Initialize your Wails project:
```
wails init -n my-wails-project -t wails-vite-vue-ts-navie-pinia
```
After running the command, Wails will create a folder named my-wails-project in the current directory and initialize the new project within that folder.
- `wails init`: Initializes a new Wails project.
- `-n my-wails-project`: Specifies the name of the new project (in this case, "my-wails-project").
- `-t wails-vite-vue-ts-navie-pinia`: Specifies the template to use for the project.3. Change into the project directory:
```
cd my-wails-project
```4. Run the development environment:
```
wails dev
```
## Live Development
To run in live development mode, run `wails dev` in the project directory. In another terminal, go into the `frontend`
directory and run `npm run dev`. The frontend dev server will run on http://localhost:34115. Connect to this in your
browser and connect to your application.## Building
To build a redistributable, production mode package, use `wails build`.