A simple Django-based URL shortener that converts long and cumbersome URLs into short links.
This was my first Django project, created to learn the basics of Django models, views, and routing.
๐ Live Demo: link.pythonanywhere.com
- Shortens any valid URL into an 8-character alphanumeric link.
- Minimal and clean interface.
- Uses Djangoโs built-in capabilities for routing and database management.
- Backend: Django (Python)
- Database: SQLite (default)
- Hosting: PythonAnywhere
-
Clone the repository
git clone https://github.com/Naman-0206/Link_Shortner.git cd Link_Shortner
-
Install dependencies
pip install -r requirements.txt
-
Run migrations
python manage.py migrate
-
Start the development server
python manage.py runserver
-
Visit http://127.0.0.1:8000/ in your browser.