This is a simple link shortifier flask site writed with bulma
- Google Recaptcha support
- Accounts
- Link statistics
- QR Code generating
- Install requirements
python3 -m pip intstall -r requirements.txt
- IMPORTANT Replace configuration values in rozlink/config.py
SECRET_KEY = 'YOUR_SECRET_KEY'
RECAPTCHA_PUBLIC_KEY = 'YOUR_RECAPTCHA_PUBLIC_KEY'
RECAPTCHA_PRIVATE_KEY = 'YOUR_RECAPTCHA_SECRET_KEY'
- Launch app with Flask
export FLASK_APP=wsgi.app
python3 -m flask run