An open API service indexing awesome lists of open source software.

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

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/`