URL shortening service built with Flask and SQL.
Shrinkly is a full-stack web application that allows users to convert long URLs to more accessible and maintainable short URLs.
Utilized Flask Rest framework, SQL, and implemented Base62 encoding algorithm for the shortening service.
Find the live version of the app here: Shrinkly.com
├── Procfile
├── README.md
├── .gitignore
├── requirements.txt
├── url_shortener
├── static
├── templates
├── __init__.py
├── extensions.py
├── models.py
├── routes.py
├── settings.py
└── utils.py
- Clone the repo
$ git clone https://github.com/OfiliPatrick/url-shortener
$ cd url-shortener
- Initialize and activate a virtualenv:
$ virtualenv --no-site-packages venv
$ source venv/scripts/activate
- Install the dependencies:
$ pip install -r requirements.txt
- Run the development server:
$ flask run
- Navigate to http://localhost:5000
All configuration is in settings.py.