https://github.com/oleiade/patron
A minimalist template system for Ableton Live
https://github.com/oleiade/patron
Last synced: 3 months ago
JSON representation
A minimalist template system for Ableton Live
- Host: GitHub
- URL: https://github.com/oleiade/patron
- Owner: oleiade
- License: mit
- Created: 2016-11-28T15:13:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-02T12:49:57.000Z (about 9 years ago)
- Last Synced: 2025-02-26T13:50:44.369Z (11 months ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Electron & Elm basic setup
This is a minimal Electron application built with Elm. It provides a simple
Quick file overview:
- `index.html` - A web page that simply mounts the Elm application.
- `Main.elm` - The Elm application.
- `main.js` - Starts the app and creates a browser window to render HTML.
- `package.json` - Points to the app's main file and lists its details and dependencies.
- `elm-package.json` - Elm package definition.
## To Use
The script expects the compiled Elm code in `elm.js`, so compile the module like
this:
elm make Main.elm --output elm.js
Then simply run Electron on this folder:
electron .
## License
It's under [MIT](LICENSE.md)