create a new bash stack app:
curl -SsL create.bashsta.cc | bash
there are a few dependencies:
optionally…
Bash Stack uses file-based routing. All of the application routes should exist as
.sh
files in the pages/
folder of the project.
Whenever an HTTP request is made, the framework will locate the corresponding script
and execute it. Anything written to stdout
by the script will be written to the HTTP response body.
Bash Stack also pairs well with htmx, which is included by default. We strongly recommend familizarizing yourself with their examples before proceeding.