Note – Before getting started Sign up to PythonAnywhere and Create Your Account . We will be using Beginners’ plan which is a free plan. Disallowed Host Error If you get Disallowed Host at Django let just add ‘*’ in ALLOWED_HOSTS in settings.py file and Reload the Web App. ALLOWED_HOSTS =['*'] Here’s an overview of the steps involved. Upload your code to Hosting Cloud Server Set up a virtualenv and install Django and any other requirements Set up your web app using the manual config option Add any other setup (static and media files, env variables) Uploading Django Code to Hosting Server As our code is ready on GitHub , we will clone it using Bash Console. Create a Bash Console by clicking on the Console Tab. You will see the terminal interface where you need to type git clone command. # for example git clone https://github.com/studygyaan/Django-CRM-Project.git Create ...