This app provides a simple URL shortening service, other similar projects already exist, but did not meet all of our requirements.
It is built using Python (see requirements.txt):
- Python3
- Flask
- Flask-Login
- sqlite3
- passlib
- ipaddr
- rfc3987
- unittest
HTML / JS / CSS:
- Bootstrap
- Bootbox.js
- Bootstrap-table
- BootstrapValidator
- jQuery
/admin/login
- Admin login page/admin/
- Admin panel/admin/about
- License, contributors, change log/admin/urls
- List of existing short URLs, add/edit/delete URLs here/admin/users
- List of users, add/edit/delete users here/admin/logout
Global settings are stored in .env.
Start up the docker container:
docker-compose up -d
Now point your web browser to http://127.0.0.1:5000/admin
The list of contributors and the change log is in the about page (viewable when running the app).
Run tox inside the container
docker-compose exec shortner tox
Fix linting issues with:
docker-compose exec shortner tox -e fixlint