https://github.com/minh711/dm-productivity
A combine of my productivy apps that I made for my personal uses
https://github.com/minh711/dm-productivity
electron music piano productivity react to-do-app typescript vite
Last synced: 2 months ago
JSON representation
A combine of my productivy apps that I made for my personal uses
- Host: GitHub
- URL: https://github.com/minh711/dm-productivity
- Owner: minh711
- Created: 2025-02-05T03:22:36.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-05-24T09:30:30.000Z (5 months ago)
- Last Synced: 2025-05-24T10:25:51.746Z (5 months ago)
- Topics: electron, music, piano, productivity, react, to-do-app, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 1.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to run 🚀
## Development mode
First, switch mode in `electron-main.js`:
from:
```js
// Dev mode
// mainWindow.loadURL('http://localhost:7329');// Production mode
mainWindow.loadFile('./dist/index.html');
```to:
```js
// Dev mode
mainWindow.loadURL('http://localhost:7329');// Production mode
// mainWindow.loadFile('./dist/index.html');
```Then run the app in development mode:
```bash
npm run start:electron
```## Deployment
Build the **Vite** frontend:
```bash
npm run build
```Build the **Electron** app:
```bash
npm run build:electron
```Looking for folder `dist` after the build.