Project url: https://roadmap.sh/projects/unit-converter
A web app to convert between different units of measurement.
Clone or download this repo Have Python 3.6+ installed
- Rename
.env_distto.env - Add your secret key to the SECRET_KEY variable. You can create a key with the
secretslibrary.
>>> import secrets
>>> secrets.token_hex(16)
'f93998e306275a5cb098bc5bac9712cd' # Copy this and set it as SECRET_KEY- Run the app
# With uv
uv run app.py
# With Flask
flask --app app run