https://github.com/kanocomputing/kanome-signup-widget
https://github.com/kanocomputing/kanome-signup-widget
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kanocomputing/kanome-signup-widget
- Owner: KanoComputing
- Created: 2019-01-08T16:10:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T14:40:50.000Z (over 7 years ago)
- Last Synced: 2025-01-13T12:45:59.537Z (over 1 year ago)
- Language: Elm
- Size: 582 KB
- Stars: 2
- Watchers: 12
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# How to modify and run the project
1. Choose your branch (do not touch `master`)
2. install less `npm install -g less` and run `npm install -g less-watch-compiler` if you want watches folders(and subfolders)for file changes and automatically compile the less css files into css.
3. cd`static`folder and run `less-watch-compiler less css`
- syntax:`less-watch-compiler [options] `
4. Install elm
5. Run `elm make src/Main.elm --output dist/Main.js` ( run it also for every new change in `Main.elm` )
6. Run the server with `elm reactor`. Otherwise ff you are linux using python2 run `python -m SimpleHTTPServer` then go on `http://localhost:8000/src/` after you have compiled less in css.
7. tips: use grep! eg. `history | grep elm`
## Resources and references
- [Command Line Usage](http://lesscss.org/usage/)
- [Less Official Documentation](http://lesscss.org/)
- [less-watch-compiler](https://www.npmjs.com/package/less-watch-compiler)