How to deploy on LAN connection

I want to deploy my django project at the school of population>2500 . So i need help on how its done

You’ll first want to understand your deployment environment. You’ll at least need to know what web server (e.g. Apache, nginx) and what wsgi container (e.g. uWSGI, gunicorn) will be used in your production environment.

Then read:

You’ll also want to read:

A “production-quality” deployment is likely to be one of the most complex issues most people face when working with Django because of the number of “connection points” between Django and the environment in which it runs. There’s a lot that all needs to be set up correctly for everything to work.