Simple Python (Flask) app boilerplate using HTMx and Tailwind CSS
Confirm Python3 is installed on your system (if not install Python first).
$ python3 --version (confirms python is installed)
$ python3 -m pip --version (confirms pip is installed)
Clone the repo
$ git clone https://github.com/elzaer/flask-htmx-app
$ cd flask-htmx-app
Initialize a python virtual environment for the project
$ python3 -m venv env
$ source env/bin/activate
Install dependencies via pip:
$ pip install -r requirements.txt
Launch server:
$ python app.py