Skip to content

Micro-Django is a simplified version of Django for educational (and fun) purposes. It implements core Django-like functionality in a minimalistic way to help understand the underlying principles of Django.

License

Notifications You must be signed in to change notification settings

Mwauracollins/micro-django

Repository files navigation

Micro-Django

Just implementing django's core functionalities to settle an argument. Do you really need a framework?

Installation (local)

Clone the repository first then run

cd micro-django
pip install -e .

Quick Start

  1. Create a new project:

    microdjango-admin startproject myproject
    
  2. Navigate to the project directory:

    cd myproject
    
  3. Run the development server:

    python manage.py runserver
    
  4. Open your browser and go to http://localhost:8000

Features

  • Basic URL routing
  • Simple view system
  • Settings management
  • WSGI application
  • Basic ORM-like model system More features coming soon

License

This project is licensed under the MIT License.

Author

made by Mwauracollins.

About

Micro-Django is a simplified version of Django for educational (and fun) purposes. It implements core Django-like functionality in a minimalistic way to help understand the underlying principles of Django.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages