Metadata-Version: 2.4
Name: django-home
Version: 0.1
Summary: django-home is a responsive movie website app.
Author: SORO Fèrèlaha Maimouna
Author-email: SORO Fèrèlaha Maimouna <soferelaha@gmail.com>
Project-URL: Homepage, https://www.example.com/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: django>=5.2
Dynamic: license-file

============
django-home
============

django-home is a responsive movie website app.Visitors can choose between MOVIES

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "home" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "django_home",
    ]

2. Include the app URLconf in your project urls.py like this::

    path("home/", include("django_home.urls")),

3. Run ``python manage.py migrate`` to create the models.

4. Start the development server and visit the admin to create a app.

5. Visit the ``/home/`` URL to participate in the poll.
