https://github.com/rnevius/minimal-django
A lightweight Django project - because Django can be nearly as simple as a microframework
https://github.com/rnevius/minimal-django
django flask python
Last synced: 10 months ago
JSON representation
A lightweight Django project - because Django can be nearly as simple as a microframework
- Host: GitHub
- URL: https://github.com/rnevius/minimal-django
- Owner: rnevius
- License: mit
- Created: 2016-03-01T03:36:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-01-02T15:02:38.000Z (about 3 years ago)
- Last Synced: 2025-03-18T06:18:35.083Z (11 months ago)
- Topics: django, flask, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 557
- Watchers: 9
- Forks: 47
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minimal Django
A "Hello World" for Django...Because Django can be nearly as simple as Flask.
The aim of this repository is to highlight the fact that a Django project, when simplified down to the bare essentials, can be nearly as minimal as a micro-framework application.
### To run it:
1. Install [Python](https://www.python.org/downloads/)
2. Install [Django](https://docs.djangoproject.com/en/dev/topics/install/). If you have pip: `pip install Django`
3. Clone this repository: `git clone https://github.com/rnevius/minimal-django.git`
4. Switch to the project directory: `cd minimal-django`
5. Run the development server: `python minimal.py runserver`
6. Open a browser to `http://127.0.0.1:8000/`