https://github.com/ModuleArt/neu-todo
Simple cross-platform todo app, built on top of Typescript, Vue, Vuetify and Neutralinojs
https://github.com/ModuleArt/neu-todo
Last synced: 9 months ago
JSON representation
Simple cross-platform todo app, built on top of Typescript, Vue, Vuetify and Neutralinojs
- Host: GitHub
- URL: https://github.com/ModuleArt/neu-todo
- Owner: ModuleArt
- Archived: true
- Created: 2022-01-22T20:34:47.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-21T00:01:20.000Z (almost 4 years ago)
- Last Synced: 2025-04-21T21:20:37.403Z (10 months ago)
- Language: Vue
- Homepage: https://moduleart.github.io/neu-todo/
- Size: 7.59 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-neutralino - NeuTodo - Simple cross-platform todo app, built on top of Typescript, Vue, Vuetify and Neutralinojs (Apps)
README
# NeuTodo
Simple cross-platform todo app, built on top of Typescript, Vue, Vuetify and Neutralinojs
## Scripts
#### 🛠 Dev
Install dependencies:
```bash
yarn && yarn update
```
Open for development:
```bash
yarn dev
```
Visit `http://localhost:8090/` to preview.
#### 🏗 Build
Build base for all platforms:
```bash
yarn build
```
Build for web (GitHub pages):
```bash
yarn build-github
```
Build for desktop (MacOS, Windows, Linux):
```bash
yarn build-desktop
```
#### 🖥 Run
Debug on your system (Neutralino):
```bash
yarn open-desktop
```
Debug android build (Android Studio):
```bash
yarn open-android
```
Debug iOS build (Android Studio):
```bash
yarn open-ios
```
## Contribution guide
##### 1. Fork
##### 2. Create new branch
```bash
git checkout dev
git checkout -b *name-of-branch*
```
Where `*name-of-branch*` could be `feature/*feature-name*` or `fix/*bug-name*`.
##### 3. Make your changes
##### 4. Create pull request to `dev` branch