Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a5308y/methodoly
https://github.com/a5308y/methodoly
elm gtd noserver timeboxing todoapp
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/a5308y/methodoly
- Owner: A5308Y
- License: gpl-3.0
- Created: 2018-07-22T05:37:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T18:34:15.000Z (about 2 years ago)
- Last Synced: 2024-10-27T20:51:36.951Z (about 2 months ago)
- Topics: elm, gtd, noserver, timeboxing, todoapp
- Language: JavaScript
- Size: 1.2 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 54
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Check out a demo at https://a5308y.github.io/Methodoly
# Contributing
Compile the app with `elm-make Main.elm --output main.js`. There is no
hotloading yet. Then open `index.html` in your browser. No need to run a server
yet. The app uses a simple json storage. For now it's http://myjson.com/api (https://github.com/lramoth/myjson), but it could be our own Server.For development it might be helpful to include the debug flag:
`elm-make Main.elm --output main.js --debug`Use `google-closure-compiler-js main.js > minified.js` to minify the js result.
`npm install -g google-closure-compiler-js` to install the compiler.We use http://fezvrasta.github.io/bootstrap-material-design/docs/4.0 to allow
a material design look while using elm-bootstrap to have typesafe styling I can
understand. This means we're not getting to use everything. For example
condensed list groups are hard because elm-boostrap does not allow a custom
class for list groups, but that would be necessary for a condensed list group. We can always give up type safety and right the classes manually where we really want a feature though.Adjust bootstrap settings (like colors) by editing `bootstrap/scss/_custom.scss`.
To compile the stylesheets run `npm run build:css` in the bootstrap folder and
copy the resulting file from `bootstrap/dist/css` to the file imported in
index.html. If you didn't before you will have to run `npm install`.Use http://material.io/tools/icons to explore icons of the robot font that can be used easily in the app.
Opaque store and opaque ids. Workflows should never access anything else than store and their own model.
Possibly at one point we'll introduce something like elm-taco.The key components of the app are the workflows. They should be independent, be based on an already existing and tried methodology like GTD, Pomodoro, autofocus, ... and include a short description of how and why they work with a link to their theory. Why are they helpful to a human and what is their goal.