Skip to content

AA047267/Flask-Angular-TaskList

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task List Backend

Angular App

Run the following to start the server:

cd frontend
http-server

REST API

Authentication

Get an access token for the API:

POST localhost:8000/api/auth/access_token {'username':'name', 'password':'pw'}

Create a new user:

POST localhost:8000/api/users {'username':'x', 'password':'pw'}

Endpoints

Get all tasks:

GET localhost:8000/api/tasks?api_key=x

Get a particular task:

GET localhost:8000/api/tasks/<task id>?api_key=x

Create a task:

POST localhost:8000/api/tasks?api_key=x {'title':'name of task'}

TODO: Update a task Delete a task Update user username/password

About

Task List using Flask as AngularJS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 57.4%
  • JavaScript 24.8%
  • HTML 17.8%