├── .gitignore ├── README.md ├── apps ├── __init__.py ├── __pycache__ │ └── __init__.cpython-36.pyc ├── lists │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200605_2313.py │ │ ├── 0003_listitem.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_auto_20200605_2313.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── projects │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── tasks │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200605_2313.py │ │ ├── 0003_auto_20200607_1555.py │ │ ├── 0004_auto_20200612_2259.py │ │ ├── 0005_auto_20200701_1416.py │ │ ├── 0006_task_project.py │ │ ├── 0007_tag.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_auto_20200605_2313.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── users │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ └── models.cpython-36.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_is_staff.py │ │ ├── 0003_userprofile.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_user_is_staff.cpython-36.pyc │ │ │ ├── 0003_userprofile.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ └── models.cpython-36.pyc │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ └── views.py ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/lists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lists/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/admin.py -------------------------------------------------------------------------------- /apps/lists/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/apps.py -------------------------------------------------------------------------------- /apps/lists/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/lists/migrations/0002_auto_20200605_2313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/migrations/0002_auto_20200605_2313.py -------------------------------------------------------------------------------- /apps/lists/migrations/0003_listitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/migrations/0003_listitem.py -------------------------------------------------------------------------------- /apps/lists/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lists/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/lists/migrations/__pycache__/0002_auto_20200605_2313.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/migrations/__pycache__/0002_auto_20200605_2313.cpython-36.pyc -------------------------------------------------------------------------------- /apps/lists/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/lists/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/models.py -------------------------------------------------------------------------------- /apps/lists/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/tests.py -------------------------------------------------------------------------------- /apps/lists/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/urls.py -------------------------------------------------------------------------------- /apps/lists/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/lists/views.py -------------------------------------------------------------------------------- /apps/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/admin.py -------------------------------------------------------------------------------- /apps/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/apps.py -------------------------------------------------------------------------------- /apps/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/models.py -------------------------------------------------------------------------------- /apps/projects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/tests.py -------------------------------------------------------------------------------- /apps/projects/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/urls.py -------------------------------------------------------------------------------- /apps/projects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/projects/views.py -------------------------------------------------------------------------------- /apps/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tasks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/admin.py -------------------------------------------------------------------------------- /apps/tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/apps.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0002_auto_20200605_2313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0002_auto_20200605_2313.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0003_auto_20200607_1555.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0003_auto_20200607_1555.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0004_auto_20200612_2259.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0004_auto_20200612_2259.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0005_auto_20200701_1416.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0005_auto_20200701_1416.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0006_task_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0006_task_project.py -------------------------------------------------------------------------------- /apps/tasks/migrations/0007_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/0007_tag.py -------------------------------------------------------------------------------- /apps/tasks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tasks/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/tasks/migrations/__pycache__/0002_auto_20200605_2313.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/__pycache__/0002_auto_20200605_2313.cpython-36.pyc -------------------------------------------------------------------------------- /apps/tasks/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/tasks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/models.py -------------------------------------------------------------------------------- /apps/tasks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/tests.py -------------------------------------------------------------------------------- /apps/tasks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/urls.py -------------------------------------------------------------------------------- /apps/tasks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/tasks/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/0002_user_is_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/0002_user_is_staff.py -------------------------------------------------------------------------------- /apps/users/migrations/0003_userprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/0003_userprofile.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0002_user_is_staff.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/__pycache__/0002_user_is_staff.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0003_userprofile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/__pycache__/0003_userprofile.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/urls.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /apps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/utils/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/utils/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/utils/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/admin.py -------------------------------------------------------------------------------- /apps/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/apps.py -------------------------------------------------------------------------------- /apps/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/models.py -------------------------------------------------------------------------------- /apps/utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/apps/utils/tests.py -------------------------------------------------------------------------------- /apps/utils/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reasonable-productivity/web-back-end/HEAD/requirements.txt --------------------------------------------------------------------------------