Django based link shortener
path: /home/username/url-shortener
Download virtualenv from here and install it.
virtualenv env
source env/bin/activate
pip install -r requirements.txt
create a .env file in the root directory and add the following variables
SECRET_KEY=django-insecure-hsb2h+6kkdesg)r(qm-q9$vgdaopxy^)yn=qdb^vg8p%@k7))t
DEBUG=1
ALLOWED_HOSTS='127.0.0.1 localhost'
cd urlshortener
python manage.py runserver