GitHub
github.com › topics › django-project
django-project · GitHub Topics · GitHub
dark-theme django-admin django-project django-template django-bootstrap4 appseed django-theme django-admin-theme black-dashboard django-bootstrap django-dashboard black-design django-black django-dark-theme black-admin ... Open source Django Project repository for beginners.
InterviewBit
interviewbit.com › projects › 15+ django projects with source code
15+ Django Projects With Source Code - InterviewBit
April 19, 2023 - Getting started with Django projects may be challenging at first, but you can eventually get the hang of it with practice. Make sure that you create a great portfolio on renowned platforms such as GitHub, SourceForge, Gogs, BitBucket, etc. You can also create your website or post your work examples on social media such as LinkedIn, Instagram, Facebook, Twitter, etc and provide a link to your source codes ...
What open source projects built using Django should I study their code?
Have you seen this on Github? There is a Project list here that might be what you are looking for. https://github.com/wsvincent/awesome-django More on reddit.com
Django github projects
I’m building a self insurance platform where I’ve mostly adhered to django best practices. Been using django for like 6 years now. https://github.com/daxaxelrod/open_insure More on reddit.com
Django simple project for learning
I didn't wanna start using django with rest-framework. I made a task project (only the backend part) including swagger documentation, that was the most challenging thing until now because I needed to user alternatives like drf-yasg or something like that, but because I want to understand what's happening I've made my own implementation of swagger using swagger-ui project, swagger editor and wrinting the code ... More on reddit.com
What are some beginner projects to help me get a grasp on this framework?
I would recommend Django 3 By Example . This book will help you with the practicing part of learning Django from the basics to more advanced topics without ignoring the theory behind it. More on reddit.com
How do I install Django for my python django projects?
Installation is simple using Python's package manager. Open your terminal and run pip install django. It is highly recommended to do this inside a virtual environment to manage dependencies separately for each project, ensuring different applications do not conflict with one another.
upgrad.com
upgrad.com › home › blog › software development › top 30 django project ideas for beginners and professionals
Top 30 Django Projects to Try in 2026 [With Source Code]
How do I deploy my python django projects to the web?
Deployment involves hosting your code on a server. Platforms like Heroku, PythonAnywhere, or AWS Elastic Beanstalk are popular choices. You will need to configure a WSGI server (like Gunicorn) and serve static files efficiently to ensure your project runs smoothly for public users.
upgrad.com
upgrad.com › home › blog › software development › top 30 django project ideas for beginners and professionals
Top 30 Django Projects to Try in 2026 [With Source Code]
Can I use a frontend framework like React with a django project?
Yes, this is a very popular architecture known as "Headless Django." You use the Django REST Framework (DRF) to build an API backend, while React or Vue.js consumes that data on the frontend. This setup powers many modern, high-performance python django projects.
upgrad.com
upgrad.com › home › blog › software development › top 30 django project ideas for beginners and professionals
Top 30 Django Projects to Try in 2026 [With Source Code]
Videos
Reddit
reddit.com › r/django › django projects with open source code on github(websites and apps, not library)
r/django on Reddit: Django projects with open source code on github(websites and apps, not library)
October 31, 2016 -
I'm looking for Django projects with open source code on github, but not django library, I meant normal apps and websites. Can anyone recommend any?
Top answer 1 of 5
12
All of the Django based CMS are standalone apps: wagtail, django-cms, feincms, mezzanine Taiga project management https://github.com/taigaio/taiga-back There are several forum apps, e.g.: https://github.com/nitely/Spirit https://github.com/stephenmcd/drum There are a few simple (simplistic?) helpdesk webapps, e.g.: https://github.com/ookami-kb/django-simple-helpdesk https://github.com/orges/itsy/ Mozilla Add Ons https://github.com/mozilla/addons-server Mayan doc management system https://github.com/mayan-edms/mayan-edms/ Some more randomly: https://github.com/healthchecks/healthchecks https://github.com/adamalton/django-csp-reports
2 of 5
4
Django uses the term 'app' to mean something fairly similar to library. But I'm guessing you mean app as in 'Web App' not as in 'Django App'?
GitHub
github.com › django › djangoproject.com
GitHub - django/djangoproject.com: Source code to djangoproject.com · GitHub
the site (similar to www.djangoproject.com) on http://0.0.0.0:8000/ to be used with the modified /etc/hosts file (see above) the make task to automatically compile the SCSS files to CSS files · This is great during development. Assuming you're using Foreman simply run: ... That'll just run the www server. Check out the Procfile file for all the process names. This project's JavaScript libraries can be found in djangoproject/static/js/lib/. If you need to add a library, commit the minified version of it to this directory.
Starred by 2K users
Forked by 1.1K users
Languages Python 43.7% | PostScript 38.6% | HTML 11.1% | SCSS 5.2% | JavaScript 1.0% | Jinja 0.2%
GitHub
github.com › ianshulx › Django-Projects-for-beginners
GitHub - ianshulx/Django-Projects-for-beginners: Open source Django Project repository for beginners. @Hacktoberfest @Django · GitHub
Open source Django Project repository for beginners. @Hacktoberfest @Django - ianshulx/Django-Projects-for-beginners
Starred by 355 users
Forked by 286 users
Languages JavaScript 70.0% | CSS 12.1% | HTML 10.9% | Python 5.7% | Jupyter Notebook 1.2% | Less 0.1%
Upgrad
upgrad.com › home › blog › software development › top 30 django project ideas for beginners and professionals
Top 30 Django Projects to Try in 2026 [With Source Code]
December 6, 2025 - Whether you are a student submitting a final year assignment or a professional building a portfolio, choosing the right project is critical. The following list covers a wide range of project ideas, categorized by difficulty to match your current skill level. Please Note: The source code for all these Django projects is given at the end of this blog.
GitHub
github.com › Manisha-Bayya › simple-django-project
GitHub - Manisha-Bayya/simple-django-project: A simple Django project which uses MySQL as database. It has Signup, Login, Logout functionality. It lets you search for countries, cities, languages from the default mysql dump. Django's user table has been overridden to store user information. · GitHub
# Install virtual environment sudo pip install virtualenv # Make a directory mkdir envs # Create virtual environment virtualenv ./envs/ # Activate virtual environment source envs/bin/activate · git clone "https://github.com/Manisha-Bayya/simple-django-project.git"
Starred by 191 users
Forked by 143 users
Languages Python 63.0% | HTML 30.8% | JavaScript 6.2%
GitHub
github.com › kellytimire › Python-and-Django-mini-project
GitHub - kellytimire/Python-and-Django-mini-project: I was teaching myself python. So I created a mini django app with python. It is a hospital app that allows a person to book a consultation and appointment.
December 11, 2018 - I was teaching myself python. So I created a mini django app with python. It is a hospital app that allows a person to book a consultation and appointment. - kellytimire/Python-and-Django-mini-project
Starred by 8 users
Forked by 3 users
Languages Python 49.2% | HTML 48.1% | JavaScript 2.2% | CSS 0.5% | Python 49.2% | HTML 48.1% | JavaScript 2.2% | CSS 0.5%
Itsourcecode
itsourcecode.com › home › top 25+ django projects with source code for beginners 2026
Top 25+ Django Projects With Source Code for Beginners 2026
January 28, 2026 - According to Hot Frameworks, in ... of GitHub projects and StackOverflow questions for each platform. Django is in the Top 7 out of more than 100 frameworks with an overall score of 93. ... We use the Django framework because it’s fast and simple, secure, suits any web application project, and well-established. ... In this article, you have given free Django Projects with Source code for beginners ...
GitHub
github.com › procoder317 › django-mini-projects
GitHub - procoder317/django-mini-projects: My django mini projects as I learn about django and more
Forked by 2 users
Languages PHP 44.7% | CSS 42.1% | Python 8.9% | HTML 4.0% | PHP 44.7% | CSS 42.1% | Python 8.9% | HTML 4.0%
GitHub
github.com › wsvincent › awesome-django
GitHub - wsvincent/awesome-django: A curated list of awesome things related to Django · GitHub
Built with Django - Curated list of awesome Django projects. PostHog - Open-source product analytics. HyperKitty - A web interface to access GNU Mailman v3 archives. Healthchecks - A Cron Monitoring Tool written in Python & Django. Flagsmith - Open-source Feature Flagging, Remote Config, and AB testing. OpenContracts - Enterprise-grade document analytics platform that combines automated PDF parsing, vector embeddings, and LLM integration. Baserow - Open source no-code database and Airtable alternative built with Django and Vue.js.
Starred by 11.1K users
Forked by 1.5K users
Languages Python 90.9% | Just 3.6% | SCSS 2.8% | HTML 2.4% | Ruby 0.3%
NxtWave
ccbp.in › blog › articles › best-django-projects-with-source-code
Best Django Projects with Source Code (Beginner to Advanced)
Source Code: Check out online Learning Management system open-source projects on GitHub. Safeguard the management of patient profiles, appointment setting, and personnel duties. Key Features: Patient information, setting appointments, billing, access levels. What You Will Learn: Management of sensitive data, access control systems, signaling. Source Code: You can get a free download of the hospital management system project in Django with source code on GitHub.
FreeProjectz
freeprojectz.com › django-projects
Django Projects Download With Source Code, Database and Reports
This project is perfect for both mini projects and major projects. You can easily find the Furniture Shop Management System Source Code Download online, which will help you get started quickly.... Django Projects, Mini Project, MySQL Projects, Online Furniture Shop Project, Python Projects
GitHub
github.com › MahdiMashayekhi-AI › Django-Projects
GitHub - MahdiMashayekhi-AI/Django-Projects: Django Projects Repository is a collection of open-source projects built with Django, showcasing best practices and use cases for web app development. It's a great resource for learning and inspiration. · GitHub
Django Projects Repository is a collection of open-source projects built with Django, showcasing best practices and use cases for web app development. It's a great resource for learning and inspiration. - MahdiMashayekhi-AI/Django-Projects
Author MahdiMashayekhi-AI
GitHub
github.com › topics › django-web-application
django-web-application · GitHub Topics · GitHub
python django django-application webapp django-project webapplication django-web django-webapplication django-web-application django-web-app django-webapp ... This repository provides a simple codebase for multiple functionalities of the ESP8266 ...