From 64045e9ba38566d01d2f04ba237ab29ab6129f8c Mon Sep 17 00:00:00 2001 From: Nikhil KJ Date: Wed, 6 Jul 2022 08:45:22 +0000 Subject: [PATCH] --- Project-setup.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Project-setup.md diff --git a/Project-setup.md b/Project-setup.md new file mode 100644 index 0000000..8f6d2ba --- /dev/null +++ b/Project-setup.md @@ -0,0 +1,7 @@ +1. Clone the app +2. Create a virtual environment `python3 -m venv virtualenv` +3. Activate virtualenv `source virtualenv/bin/activate` +4. Run `pip install -r requirements.txt` +5. After installing run `python manage.py makemigrations` and `python manage.py migrate` +6. Post migration run `python manage.py createsuperuser` to create a user with Email ID and password of your choice +7. Execute `python manage.py runserver` \ No newline at end of file