├── .gitignore ├── manage.py ├── requirements.txt ├── watchlist_app ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py └── watchmate ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/.gitignore -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/requirements.txt -------------------------------------------------------------------------------- /watchlist_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watchlist_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchlist_app/admin.py -------------------------------------------------------------------------------- /watchlist_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchlist_app/apps.py -------------------------------------------------------------------------------- /watchlist_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watchlist_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchlist_app/models.py -------------------------------------------------------------------------------- /watchlist_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchlist_app/tests.py -------------------------------------------------------------------------------- /watchlist_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchlist_app/urls.py -------------------------------------------------------------------------------- /watchlist_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchlist_app/views.py -------------------------------------------------------------------------------- /watchmate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /watchmate/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchmate/asgi.py -------------------------------------------------------------------------------- /watchmate/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchmate/settings.py -------------------------------------------------------------------------------- /watchmate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchmate/urls.py -------------------------------------------------------------------------------- /watchmate/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/MovieListAPI-Django/HEAD/watchmate/wsgi.py --------------------------------------------------------------------------------