delitamakanda / timesheet

timesheet rest api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timesheet app

timesheet app with Falcon Rest API Demo application

""" class TimeEntry(models.Model): user = models.ForeignKey(User, on_delete=models.CASCADE) date = models.DateField() start_time = models.TimeField() end_time = models.TimeField() task = models.CharField(max_length=200) """

Start server

  gunicorn -b 127.0.0.1:5000 --reload app.main:application

To Do

  1. generate openapi documentation
  2. enpoints for tasks and time entries

About

timesheet rest api


Languages

Language:Python 100.0%