Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aocenas/todilo
simple todo app
https://github.com/aocenas/todilo
Last synced: 10 days ago
JSON representation
simple todo app
- Host: GitHub
- URL: https://github.com/aocenas/todilo
- Owner: aocenas
- License: mit
- Created: 2015-06-07T15:17:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T23:01:33.000Z (almost 6 years ago)
- Last Synced: 2024-04-14T16:02:04.175Z (7 months ago)
- Language: JavaScript
- Size: 36.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Simple TODO application in React with simple Flask backend. There
is no persistance, all TODOs are in memory on server. You can add
TODO, mark as done, reorder by drag and drop.Tested on node v0.12, python 2.7.6 and chrome 43.
# installation:
1. clone repo
2. best with virtualenv: `pip install -r requirements.txt`
3. install Sass: `gem install sass`
4. `npm install`# run:
`python server.py`
flask server should run on default http://127.0.0.1:5000/
# test:
`npm run-script js-test` for some rudimentary Jest tests, but because of
https://github.com/facebook/jest/issues/243 they do not work on node 0.12
(they can be run on 0.10)`npm run-script python-test` for some python API tests
`npm test` runs both