python3 -m venv venv
) for use with this application.source venv/bin/activate
) and run pip install -r requirements.txt
to install package dependencies../tailwindcss -i ./app/static/src/css/tailwind.css -o ./app/static/src/css/index.css --watch
. This will start the Tailwind JIT Watcher and will compile your CSS on the fly.export FLASK_APP=run.py
(use set
instead of export
for windows)export FLASK_ENV=development
config.py
as per your requirementsflask db upgrade
to intialise databaseflask run
to start the Flask development serverflask assets clean
followed by flask assets compile
to prepare the CSS and JSS assets for production