This is a Django-based web application that shortens long URLs into compact, shareable links. It includes a simple UI for submitting URLs and redirect functionality for shortened links.
- Shorten long URLs into short codes
- Clean, minimal UI using Django templates
- Organized project structure for scalability
- Python
- Django
- HTML
- CSS
├── manage.py # Django management script ├── db.sqlite3 # SQLite database ├── README.md # Project documentation ├── shortener/ # Django app for URL shortener │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── urlshortener/ # Django project settings │ ├── settings.py │ ├── urls.py │ ├── asgi.py │ └── wsgi.py ├── templates/ # HTML templates │ └── home.html ├── static/ # Static files (CSS, JS, images)