KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
react-flask-todo-app
★ 18
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
DSR
:
Data sets for Data Science with R
XShot
:
Multi-platform screenshot application
MysqlDumpToH2
:
Bash Script to convert an ansi mysqldump to h2 compatible.
sails-hook-fixtures
:
Automatically install database fixtures with relations to your database when you lift Sails
react-mocha-starter
:
Scaffolding for a react project with mocha testing in node and phantom
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
react-flask-todo-app
?
Download (.md)
# Todo app Sample application build with flask and facebook react ## Installation Inspired from https://github.com/abhiomkar/flask-react * install python dependencies pip install -r requirements.txt * install js dependencies bower install * compile jsx files using [React tool](http://facebook.github.io/react/docs/tooling-integration.html#productionizing-precompiled-jsx) for development purpose jsx --watch static/jsx static/js * run flask server python app.py * locations: - tasks app: http://127.0.0.1:5000 - swagger.json: http://127.0.0.1:5000/swagger.json - api docs: http://127.0.0.1:5000/doc ## React components notes - TasksBox - main component. In charge with hooking frontend components with the backend api - AddTaskForm - allows creating new tasks. Exposes submit callback to allow main component to hock into backend api - TasksLists - sortable component via jquery-ui.sortable. Exposes callbacks for tasks updates - Task - representation of one task item ## Outstanding items - task sort is not natural. On drag and drop, only source and destination positions are swapped. In order to support a natural sort, all items in between must shifted. This might be a good reason to refactor tasks update api to accept multiple tasks updates - add tasks model abstraction behind flask rest api