Skip to content
forked from imclab/todoapp

A simple Todo Application made with Angular.js (client side) and Flask as Server.

Notifications You must be signed in to change notification settings

dantezhu/todoapp

 
 

Repository files navigation

TodoApp

A simple Todo Application made with Angular.js (client side) and Flask as Server.

Demo Server

Requirements

  • Sqlite
  • Python
  • pip install -r requirements.txt

Structure

├── api.py							< Flask Restful Api File >
├── bower.json						< Bower File >
├── config.py							< Flask configuration file >
├── models.py							< SQLAlchemy Models >
├── requirements.txt					< Python Requirements File >
├── static							< Static Folder >
│   ├── images
│   │   └── checkbox.png
│   ├── lib								< Bower Libraries >
│   ├── scripts							< Angular Stuff >
│   │   ├── app.js
│   │   ├── controllers						< Angular Controllers >
│   │   │   └── todos.js
│   │   ├── directives						< Angular Directives >
│   │   │   ├── keypressEnter.js					< Directive for ng-enter >
│   │   │   └── keypressEscape.js					< Directive for ng-escape >
│   │   └── services
│   │       └── TodoService.js
│   └── styles							< CSS Stuff >
│       └── main.css
├── templates							< Flask Rendered Templates >
│   └── index.html						
├── test.db							< SQLite Database >
├── tests.py
└── todoapp.py						< Flask Main File >

About

A simple Todo Application made with Angular.js (client side) and Flask as Server.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 52.1%
  • CSS 46.4%
  • Other 1.5%