├── Pipfile ├── Pipfile.lock ├── README.md ├── backend ├── backend │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── todo │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py └── frontend ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ └── Modal.js ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js └── yarn.lock /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/README.md -------------------------------------------------------------------------------- /backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/backend/settings.py -------------------------------------------------------------------------------- /backend/backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/backend/urls.py -------------------------------------------------------------------------------- /backend/backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/backend/wsgi.py -------------------------------------------------------------------------------- /backend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/db.sqlite3 -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/todo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/admin.py -------------------------------------------------------------------------------- /backend/todo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/apps.py -------------------------------------------------------------------------------- /backend/todo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/todo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/todo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/models.py -------------------------------------------------------------------------------- /backend/todo/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/serializers.py -------------------------------------------------------------------------------- /backend/todo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/tests.py -------------------------------------------------------------------------------- /backend/todo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/backend/todo/views.py -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/components/Modal.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/src/serviceWorker.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/django-todo-react/HEAD/frontend/yarn.lock --------------------------------------------------------------------------------