An open API service indexing awesome lists of open source software.

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

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.