You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
535 B
35 lines
535 B
1 month ago
|
# my-app
|
||
|
|
||
|
An Electron application with Vue
|
||
|
|
||
|
## Recommended IDE Setup
|
||
|
|
||
|
- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
|
||
|
|
||
|
## Project Setup
|
||
|
|
||
|
### Install(node 16.20.1)
|
||
|
|
||
|
```bash
|
||
|
$ npm install
|
||
|
```
|
||
|
|
||
|
### Development
|
||
|
|
||
|
```bash
|
||
|
$ npm run dev
|
||
|
```
|
||
|
|
||
|
### Build
|
||
|
|
||
|
```bash
|
||
|
# For windows
|
||
|
$ npm run build:win
|
||
|
|
||
|
# For macOS
|
||
|
$ npm run build:mac
|
||
|
|
||
|
# For Linux
|
||
|
$ npm run build:linux
|
||
|
```
|