From bc89d71c5859c558457c9f6d983be2f83389f0d4 Mon Sep 17 00:00:00 2001 From: Yash Karandikar Date: Mon, 7 Sep 2020 13:16:31 -0500 Subject: [PATCH 1/2] Ignore project files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 551d32c..4c13750 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ media/profile_pics/ media/media/ .txt .env +.idea/ +venv/ +__pycache__ From a44c44b8ace5bdd81ba09238dc38747708a6a315 Mon Sep 17 00:00:00 2001 From: Yash Karandikar Date: Mon, 7 Sep 2020 14:59:27 -0500 Subject: [PATCH 2/2] Create requirements file This allows people to get their development environments up and running quickly and not have to track down all the dependencies to get the server up and running --- requirements.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b8b0c3a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +Django +django-decouple +django-heroku +django-crispy-forms +six +djangorestframework +social-auth-app-django +django-ckeditor +django-storages +django-oauth-toolkit +Pillow