https://github.com/viewstools/amenuapp
a menu app
https://github.com/viewstools/amenuapp
Last synced: about 1 year ago
JSON representation
a menu app
- Host: GitHub
- URL: https://github.com/viewstools/amenuapp
- Owner: viewstools
- Created: 2019-10-31T17:24:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-07T15:59:57.000Z (about 2 years ago)
- Last Synced: 2025-02-09T19:34:58.084Z (over 1 year ago)
- Language: JavaScript
- Size: 269 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A menu app
## Install dependencies
```
yarn install
```
## Run it in dev mode
```
yarn start
```
## Change the menu
The menu content is in `menu.json`. Tweak that file, stop the app and run it
again to test your changes.
## Build it
Setup your `.env` file:
```
APPLE_ID=user@email.com
APPLE_ID_PASSWORD=secret
```
Use your Apple ID and generate an app-specific password to go along with it (so don’t use your regular password!). You can generate one at appleid.apple.com.
https://github.com/electron-userland/electron-notarizeOThis is your Apple ID, but you need to generate an app-specific password to go along with it (so don’t use your regular password!) You can generate one at appleid.apple.com.#safety-when-using-appleidpassword
https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/
Run:
```
yarn build
```
To release it:
```
cd dist
mkdir now
cp your-higher-power-*-mac.dmg now/your-higher-power-mac.dmg
cd now
now --name your-higher-power --prod
cd ../..
rm -rf dist
```