gitextract_afvolof3/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── feature-request.yml │ ├── pull_request_template.md │ ├── semantic.yml │ └── workflows/ │ ├── ci.yml │ ├── docs.yml │ ├── generate-linter-advanced.yml │ ├── generate-linter-core.yml │ ├── npm-publish.yml │ ├── release.yml │ ├── testcontainers.yml │ └── update-htmx-version.yml ├── .gitignore ├── .goreleaser.yml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cmd/ │ ├── create.go │ ├── flags/ │ │ ├── advancedFeatures.go │ │ ├── database.go │ │ ├── frameworks.go │ │ └── git.go │ ├── program/ │ │ └── program.go │ ├── root.go │ ├── steps/ │ │ └── steps.go │ ├── template/ │ │ ├── advanced/ │ │ │ ├── docker.go │ │ │ ├── files/ │ │ │ │ ├── docker/ │ │ │ │ │ ├── docker_compose.yml.tmpl │ │ │ │ │ └── dockerfile.tmpl │ │ │ │ ├── htmx/ │ │ │ │ │ ├── base.templ.tmpl │ │ │ │ │ ├── efs.go.tmpl │ │ │ │ │ ├── hello.go.tmpl │ │ │ │ │ ├── hello.templ.tmpl │ │ │ │ │ ├── hello_fiber.go.tmpl │ │ │ │ │ ├── htmx.min.js.tmpl │ │ │ │ │ ├── imports/ │ │ │ │ │ │ ├── fiber.tmpl │ │ │ │ │ │ ├── gin.tmpl │ │ │ │ │ │ └── standard_library.tmpl │ │ │ │ │ ├── routes/ │ │ │ │ │ │ ├── chi.tmpl │ │ │ │ │ │ ├── echo.tmpl │ │ │ │ │ │ ├── fiber.tmpl │ │ │ │ │ │ ├── gin.tmpl │ │ │ │ │ │ ├── gorilla.tmpl │ │ │ │ │ │ ├── http_router.tmpl │ │ │ │ │ │ └── standard_library.tmpl │ │ │ │ │ └── tailwind/ │ │ │ │ │ └── tailwind.config.js.tmpl │ │ │ │ ├── react/ │ │ │ │ │ ├── app.tsx.tmpl │ │ │ │ │ └── tailwind/ │ │ │ │ │ ├── app.tsx.tmpl │ │ │ │ │ ├── index.css.tmpl │ │ │ │ │ └── vite.config.ts.tmpl │ │ │ │ ├── tailwind/ │ │ │ │ │ ├── input.css.tmpl │ │ │ │ │ └── output.css.tmpl │ │ │ │ ├── websocket/ │ │ │ │ │ └── imports/ │ │ │ │ │ ├── fiber.tmpl │ │ │ │ │ └── standard_library.tmpl │ │ │ │ └── workflow/ │ │ │ │ └── github/ │ │ │ │ ├── github_action_goreleaser.yml.tmpl │ │ │ │ ├── github_action_gotest.yml.tmpl │ │ │ │ └── github_action_releaser_config.yml.tmpl │ │ │ ├── gitHubAction.go │ │ │ └── routes.go │ │ ├── dbdriver/ │ │ │ ├── files/ │ │ │ │ ├── env/ │ │ │ │ │ ├── mongo.tmpl │ │ │ │ │ ├── mysql.tmpl │ │ │ │ │ ├── postgres.tmpl │ │ │ │ │ ├── redis.tmpl │ │ │ │ │ ├── scylla.tmpl │ │ │ │ │ └── sqlite.tmpl │ │ │ │ ├── service/ │ │ │ │ │ ├── mongo.tmpl │ │ │ │ │ ├── mysql.tmpl │ │ │ │ │ ├── postgres.tmpl │ │ │ │ │ ├── redis.tmpl │ │ │ │ │ ├── scylla.tmpl │ │ │ │ │ └── sqlite.tmpl │ │ │ │ └── tests/ │ │ │ │ ├── mongo.tmpl │ │ │ │ ├── mysql.tmpl │ │ │ │ ├── postgres.tmpl │ │ │ │ ├── redis.tmpl │ │ │ │ └── scylla.tmpl │ │ │ ├── mongo.go │ │ │ ├── mysql.go │ │ │ ├── postgres.go │ │ │ ├── redis.go │ │ │ ├── scylla.go │ │ │ └── sqlite.go │ │ ├── docker/ │ │ │ ├── files/ │ │ │ │ └── docker-compose/ │ │ │ │ ├── mongo.tmpl │ │ │ │ ├── mysql.tmpl │ │ │ │ ├── postgres.tmpl │ │ │ │ ├── redis.tmpl │ │ │ │ └── scylla.tmpl │ │ │ ├── mongo.go │ │ │ ├── mysql.go │ │ │ ├── postgres.go │ │ │ ├── redis.go │ │ │ └── scylla.go │ │ ├── framework/ │ │ │ ├── chiRoutes.go │ │ │ ├── echoRoutes.go │ │ │ ├── fiberServer.go │ │ │ ├── files/ │ │ │ │ ├── README.md.tmpl │ │ │ │ ├── air.toml.tmpl │ │ │ │ ├── gitignore.tmpl │ │ │ │ ├── globalenv.tmpl │ │ │ │ ├── main/ │ │ │ │ │ ├── fiber_main.go.tmpl │ │ │ │ │ └── main.go.tmpl │ │ │ │ ├── makefile.tmpl │ │ │ │ ├── routes/ │ │ │ │ │ ├── chi.go.tmpl │ │ │ │ │ ├── echo.go.tmpl │ │ │ │ │ ├── fiber.go.tmpl │ │ │ │ │ ├── gin.go.tmpl │ │ │ │ │ ├── gorilla.go.tmpl │ │ │ │ │ ├── http_router.go.tmpl │ │ │ │ │ └── standard_library.go.tmpl │ │ │ │ ├── server/ │ │ │ │ │ ├── fiber.go.tmpl │ │ │ │ │ └── standard_library.go.tmpl │ │ │ │ └── tests/ │ │ │ │ ├── default-test.go.tmpl │ │ │ │ ├── echo-test.go.tmpl │ │ │ │ ├── fiber-test.go.tmpl │ │ │ │ └── gin-test.go.tmpl │ │ │ ├── ginRoutes.go │ │ │ ├── gorillaRoutes.go │ │ │ ├── httpRoutes.go │ │ │ ├── main.go │ │ │ └── routerRoutes.go │ │ └── globalEnv.go │ ├── ui/ │ │ ├── multiInput/ │ │ │ └── multiInput.go │ │ ├── multiSelect/ │ │ │ └── multiSelect.go │ │ ├── spinner/ │ │ │ └── spinner.go │ │ └── textinput/ │ │ ├── textinput.go │ │ └── textinput_test.go │ ├── utils/ │ │ ├── utils.go │ │ └── utils_test.go │ └── version.go ├── contributors.yml ├── docs/ │ ├── Makefile │ ├── custom_theme/ │ │ └── main.html │ ├── docs/ │ │ ├── advanced-flag/ │ │ │ ├── advanced-flag.md │ │ │ ├── docker.md │ │ │ ├── goreleaser.md │ │ │ ├── htmx-templ.md │ │ │ ├── react-vite.md │ │ │ ├── tailwind.md │ │ │ └── websocket.md │ │ ├── blueprint-core/ │ │ │ ├── db-drivers.md │ │ │ └── frameworks.md │ │ ├── blueprint-ui.md │ │ ├── creating-project/ │ │ │ ├── air.md │ │ │ ├── makefile.md │ │ │ └── project-init.md │ │ ├── endpoints-test/ │ │ │ ├── mongo.md │ │ │ ├── redis.md │ │ │ ├── scylladb.md │ │ │ ├── server.md │ │ │ ├── sql.md │ │ │ ├── web.md │ │ │ └── websocket.md │ │ ├── index.md │ │ └── installation.md │ ├── mkdocs.yml │ └── requirements.txt ├── go.mod ├── go.sum ├── main.go └── scripts/ ├── completions.sh └── create-npm-packages.sh