Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 893 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 893 Bytes

Flask URL Shortener

Flask URL shortener is a tool that takes any URL and generates a shorter, more readable version like bit.ly.

Demo Video

Watch on YouTube: https://www.youtube.com/watch?v=g6chXThUReU

Tutorials

.env file contents:

SECRET_KEY=verysecretkey
DATABASE_URL=sqlite:///shorty.db
APP_SETTINGS=config.DevelopmentConfig
FLASK_APP=core

While deploying the app, make sure you change the APP_SETTINGS to config.ProductionConfig.