Skip to main content

Deploying/Host Django Project on PythonAnywhere

 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.

  1. Upload your code to Hosting Cloud Server
  2. Set up a virtualenv and install Django and any other requirements
  3. Set up your web app using the manual config option
  4. Add any other setup (static and media files, env variables)  


Uploading Django Code to Hosting Server

Bash Console PythonAnywhere

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 VirtualEnv and Install Django and Dependencies

In your Bash console, create a virtualenv, named after your project name, and choose the version of Python you want to use like we are using now 3.7:

mkvirtualenv --python=/usr/bin/python3.7  mysite-virtualenv

You will see now in terminal like this – (mysite-virtualenv) $ which means virtualenv is activated. If you don’t then type bellow command which will activate it.

 workon  mysite-virtualenv 

Once the Virtual Env is activated. We will install Django inside it. There are two ways to do it. If you have requirements.txt file then you can use following

pip install -r requirements.txt

Or simply install Django and Required Libraries

pip install django 

Setting up your Django Web app and WSGI file

At this point, you need to be armed with 3 pieces of information:

  1. The path to your Django project’s top folder — the folder that contains “manage.py”, eg –  /home/myusername/mysite
  2. The name of your project (that’s the name of the folder that contains your settings.py), eg mysite
  3. The name of your virtualenv, eg mysite-virtualenv

Create a Web Application with Manual Config

Go to Web Tab and Click on it. You will see create a web application button, click on it and follow instructions.

Create a Web Application with Manual Config

NOTE: Make sure you choose Manual Configuration, not the “Django” option, that’s for new projects only.

Once your web app is created, scroll down and you need to add some paths like shown in bellow image.

PythonAnywhere Web App Configuration Free Hosting Django Python

Note – Maker sure you add folders’ names accordingly to your project names.
1. Code – /home/myusername/mysite/
2. Virtualenv – /home/username/.virtualenvs./mysite-virtualenv

Edit WSGI File to Point our Django Project to Server.

Edit WSGI of Django App

Click on the WSGI configuration file link. It will take you to your Hosted Django Project WSGI File. We need to add the following code. Just remove everything inside that file and paste the bellow code in it. Note you need to change bold code which your relevant paths.

import os
import sys

# assuming your Django settings file is at
# '/home/myusername/mysite/mysite/settings.py'
path = '/home/myusername/mysite'
if path not in sys.path:
     sys.path.insert(0, path)

os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

Save the file.

Go to consol  

python manage.py migrate

Save the file.

That’s it. Now the file step is to go to Web Tab and reload the web app and click on the link of your web app.

PythonAnywhere Web App


Comments

Popular posts from this blog

Connect and Configure MongoDB in Django Project

  Django, a high-level Python web framework, is well-known for its robustness and versatility. While Django natively supports popular databases like PostgreSQL and MySQL, you may want to integrate a NoSQL database like MongoDB for specific use cases. MongoDB’s flexibility and scalability make it an excellent choice for handling unstructured data. In this blog, we will walk you through the process of connecting MongoDB to a Django project, enabling you to harness the power of NoSQL in your web applications. Prerequisites: Before we begin, ensure you have the following prerequisites in place: Django installed on your system. MongoDB database server installed and running. Basic familiarity with Django project structure and database concepts. Virtual Environment, this is optional but recommended. You check our blog  here . Note:  For this tutorial, we are using our basic  skeleton project  for Django. You can also download the project from  here . Step 1: Insta...

How to host Django Application in AWS using gunicorn & nginx in Production

in this post, we will see how to use    nginx  with    gunicorn  to serve    django     applications  in production.  Django is a very powerful web framework and ships with a server which is able to facilitate development. This development server is not scalable and is not suited for production. Hence we need to configure gunicorn to get better scalability and nginx can be used as a reverse proxy and as a web server to serve static files. Let's get started  Step 1 - Installing python and nginx Let's update the server's package index using the command below: sudo apt update Copy sudo apt install python3-pip python3-dev nginx Copy This will install python, pip and nginx server Step 2 - Creating a python virtual environment  sudo pip3 install virtualenv Copy This will install a virtual environment package in python. Let's create a project directory to host our Django application and create a virtual environment inside th...