├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── changelog.config.js ├── commitlint.config.js ├── electron-builder.json ├── eslint.config.js ├── logo.png ├── nodemon.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src ├── main │ ├── db │ │ └── index.ts │ ├── index.ts │ ├── preload.ts │ ├── store │ │ ├── index.ts │ │ └── module │ │ │ └── app.ts │ └── types │ │ └── index.ts └── renderer │ ├── App.vue │ ├── assets │ └── logo.png │ ├── electron.ts │ ├── index.html │ ├── main.ts │ ├── router │ └── index.ts │ ├── styles.css │ └── views │ ├── About.vue │ └── Home.vue ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.main.json └── vite.config.ts /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /changelog.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/changelog.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/electron-builder.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/eslint.config.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/logo.png -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/main/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/main/db/index.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/main/store/index.ts -------------------------------------------------------------------------------- /src/main/store/module/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/main/store/module/app.ts -------------------------------------------------------------------------------- /src/main/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/main/types/index.ts -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /src/renderer/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/electron.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/main.ts -------------------------------------------------------------------------------- /src/renderer/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/router/index.ts -------------------------------------------------------------------------------- /src/renderer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/styles.css -------------------------------------------------------------------------------- /src/renderer/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/views/About.vue -------------------------------------------------------------------------------- /src/renderer/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/src/renderer/views/Home.vue -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/tsconfig.main.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonreshetov/electron-vue-vite-boilerplate/HEAD/vite.config.ts --------------------------------------------------------------------------------