Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 601 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 601 Bytes

URL Shortener

A simple Flask link shortener application

Screenshots

Screenshot Screenshot Screenshot

Installation

Clone the repo:

git clone https://github.com/katolik163/flaskurlshortener.git
cd flaskurlshortener

Create and activate virtual environment then install dependencies:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Edit .flaskenv and config.py

Create database:

flask db upgrade

Run application:

flask run