├── .gitignore ├── Procfile ├── README.md ├── app.py ├── requirements.txt └── templates ├── all_urls.html ├── base.html ├── shorturl.html └── url_page.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | *.pyc 3 | .DS_Store 4 | .idea/* 5 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/all_urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/templates/all_urls.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/shorturl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/templates/shorturl.html -------------------------------------------------------------------------------- /templates/url_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Malla/URL-shortener/HEAD/templates/url_page.html --------------------------------------------------------------------------------