├── .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 │ └── public │ │ ├── blueprint_1.png │ │ ├── blueprint_advanced.png │ │ ├── blueprint_ui.png │ │ ├── htmx.png │ │ ├── logo.png │ │ ├── react.png │ │ └── tailwind.png ├── mkdocs.yml └── requirements.txt ├── go.mod ├── go.sum ├── main.go ├── public ├── advanced.gif ├── blueprint_1.png ├── blueprint_advanced.png ├── database.gif ├── example.gif ├── frameworks.gif ├── install.gif ├── license.gif ├── logo.png ├── stats.gif └── ui.gif └── scripts ├── completions.sh └── create-npm-packages.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [melkeydev] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- 1 | titleOnly: true -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/generate-linter-advanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/generate-linter-advanced.yml -------------------------------------------------------------------------------- /.github/workflows/generate-linter-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/generate-linter-core.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/testcontainers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/testcontainers.yml -------------------------------------------------------------------------------- /.github/workflows/update-htmx-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.github/workflows/update-htmx-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | go-blueprint 2 | site 3 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/README.md -------------------------------------------------------------------------------- /cmd/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/create.go -------------------------------------------------------------------------------- /cmd/flags/advancedFeatures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/flags/advancedFeatures.go -------------------------------------------------------------------------------- /cmd/flags/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/flags/database.go -------------------------------------------------------------------------------- /cmd/flags/frameworks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/flags/frameworks.go -------------------------------------------------------------------------------- /cmd/flags/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/flags/git.go -------------------------------------------------------------------------------- /cmd/program/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/program/program.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/steps/steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/steps/steps.go -------------------------------------------------------------------------------- /cmd/template/advanced/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/docker.go -------------------------------------------------------------------------------- /cmd/template/advanced/files/docker/docker_compose.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/docker/docker_compose.yml.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/docker/dockerfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/docker/dockerfile.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/base.templ.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/base.templ.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/efs.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/efs.go.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/hello.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/hello.go.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/hello.templ.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/hello.templ.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/hello_fiber.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/hello_fiber.go.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/htmx.min.js.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/htmx.min.js.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/imports/fiber.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/imports/fiber.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/imports/gin.tmpl: -------------------------------------------------------------------------------- 1 | "github.com/a-h/templ" 2 | "{{.ProjectName}}/cmd/web" 3 | "io/fs" 4 | -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/imports/standard_library.tmpl: -------------------------------------------------------------------------------- 1 | "github.com/a-h/templ" 2 | "{{.ProjectName}}/cmd/web" -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/chi.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/chi.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/echo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/echo.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/fiber.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/fiber.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/gin.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/gin.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/gorilla.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/gorilla.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/http_router.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/http_router.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/routes/standard_library.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/routes/standard_library.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/htmx/tailwind/tailwind.config.js.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/htmx/tailwind/tailwind.config.js.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/react/app.tsx.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/react/app.tsx.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/react/tailwind/app.tsx.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/react/tailwind/app.tsx.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/react/tailwind/index.css.tmpl: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; -------------------------------------------------------------------------------- /cmd/template/advanced/files/react/tailwind/vite.config.ts.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/react/tailwind/vite.config.ts.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/tailwind/input.css.tmpl: -------------------------------------------------------------------------------- 1 | @import "tailwindcss" 2 | -------------------------------------------------------------------------------- /cmd/template/advanced/files/tailwind/output.css.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/template/advanced/files/websocket/imports/fiber.tmpl: -------------------------------------------------------------------------------- 1 | "github.com/gofiber/contrib/websocket" 2 | -------------------------------------------------------------------------------- /cmd/template/advanced/files/websocket/imports/standard_library.tmpl: -------------------------------------------------------------------------------- 1 | "github.com/coder/websocket" 2 | -------------------------------------------------------------------------------- /cmd/template/advanced/files/workflow/github/github_action_goreleaser.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/workflow/github/github_action_goreleaser.yml.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/workflow/github/github_action_gotest.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/workflow/github/github_action_gotest.yml.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/files/workflow/github/github_action_releaser_config.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/files/workflow/github/github_action_releaser_config.yml.tmpl -------------------------------------------------------------------------------- /cmd/template/advanced/gitHubAction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/gitHubAction.go -------------------------------------------------------------------------------- /cmd/template/advanced/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/advanced/routes.go -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/env/mongo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/env/mongo.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/env/mysql.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/env/mysql.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/env/postgres.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/env/postgres.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/env/redis.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/env/redis.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/env/scylla.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/env/scylla.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/env/sqlite.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/env/sqlite.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/service/mongo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/service/mongo.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/service/mysql.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/service/mysql.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/service/postgres.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/service/postgres.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/service/redis.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/service/redis.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/service/scylla.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/service/scylla.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/service/sqlite.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/service/sqlite.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/tests/mongo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/tests/mongo.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/tests/mysql.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/tests/mysql.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/tests/postgres.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/tests/postgres.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/tests/redis.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/tests/redis.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/files/tests/scylla.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/files/tests/scylla.tmpl -------------------------------------------------------------------------------- /cmd/template/dbdriver/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/mongo.go -------------------------------------------------------------------------------- /cmd/template/dbdriver/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/mysql.go -------------------------------------------------------------------------------- /cmd/template/dbdriver/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/postgres.go -------------------------------------------------------------------------------- /cmd/template/dbdriver/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/redis.go -------------------------------------------------------------------------------- /cmd/template/dbdriver/scylla.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/scylla.go -------------------------------------------------------------------------------- /cmd/template/dbdriver/sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/dbdriver/sqlite.go -------------------------------------------------------------------------------- /cmd/template/docker/files/docker-compose/mongo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/files/docker-compose/mongo.tmpl -------------------------------------------------------------------------------- /cmd/template/docker/files/docker-compose/mysql.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/files/docker-compose/mysql.tmpl -------------------------------------------------------------------------------- /cmd/template/docker/files/docker-compose/postgres.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/files/docker-compose/postgres.tmpl -------------------------------------------------------------------------------- /cmd/template/docker/files/docker-compose/redis.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/files/docker-compose/redis.tmpl -------------------------------------------------------------------------------- /cmd/template/docker/files/docker-compose/scylla.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/files/docker-compose/scylla.tmpl -------------------------------------------------------------------------------- /cmd/template/docker/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/mongo.go -------------------------------------------------------------------------------- /cmd/template/docker/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/mysql.go -------------------------------------------------------------------------------- /cmd/template/docker/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/postgres.go -------------------------------------------------------------------------------- /cmd/template/docker/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/redis.go -------------------------------------------------------------------------------- /cmd/template/docker/scylla.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/docker/scylla.go -------------------------------------------------------------------------------- /cmd/template/framework/chiRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/chiRoutes.go -------------------------------------------------------------------------------- /cmd/template/framework/echoRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/echoRoutes.go -------------------------------------------------------------------------------- /cmd/template/framework/fiberServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/fiberServer.go -------------------------------------------------------------------------------- /cmd/template/framework/files/README.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/README.md.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/air.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/air.toml.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/gitignore.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/gitignore.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/globalenv.tmpl: -------------------------------------------------------------------------------- 1 | PORT=8080 2 | APP_ENV=local 3 | -------------------------------------------------------------------------------- /cmd/template/framework/files/main/fiber_main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/main/fiber_main.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/main/main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/main/main.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/makefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/makefile.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/chi.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/chi.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/echo.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/echo.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/fiber.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/fiber.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/gin.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/gin.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/gorilla.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/gorilla.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/http_router.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/http_router.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/routes/standard_library.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/routes/standard_library.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/server/fiber.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/server/fiber.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/server/standard_library.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/server/standard_library.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/tests/default-test.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/tests/default-test.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/tests/echo-test.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/tests/echo-test.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/tests/fiber-test.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/tests/fiber-test.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/files/tests/gin-test.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/files/tests/gin-test.go.tmpl -------------------------------------------------------------------------------- /cmd/template/framework/ginRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/ginRoutes.go -------------------------------------------------------------------------------- /cmd/template/framework/gorillaRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/gorillaRoutes.go -------------------------------------------------------------------------------- /cmd/template/framework/httpRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/httpRoutes.go -------------------------------------------------------------------------------- /cmd/template/framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/main.go -------------------------------------------------------------------------------- /cmd/template/framework/routerRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/framework/routerRoutes.go -------------------------------------------------------------------------------- /cmd/template/globalEnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/template/globalEnv.go -------------------------------------------------------------------------------- /cmd/ui/multiInput/multiInput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/ui/multiInput/multiInput.go -------------------------------------------------------------------------------- /cmd/ui/multiSelect/multiSelect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/ui/multiSelect/multiSelect.go -------------------------------------------------------------------------------- /cmd/ui/spinner/spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/ui/spinner/spinner.go -------------------------------------------------------------------------------- /cmd/ui/textinput/textinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/ui/textinput/textinput.go -------------------------------------------------------------------------------- /cmd/ui/textinput/textinput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/ui/textinput/textinput_test.go -------------------------------------------------------------------------------- /cmd/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/utils/utils.go -------------------------------------------------------------------------------- /cmd/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/utils/utils_test.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/cmd/version.go -------------------------------------------------------------------------------- /contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/contributors.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/custom_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/custom_theme/main.html -------------------------------------------------------------------------------- /docs/docs/advanced-flag/advanced-flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/advanced-flag.md -------------------------------------------------------------------------------- /docs/docs/advanced-flag/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/docker.md -------------------------------------------------------------------------------- /docs/docs/advanced-flag/goreleaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/goreleaser.md -------------------------------------------------------------------------------- /docs/docs/advanced-flag/htmx-templ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/htmx-templ.md -------------------------------------------------------------------------------- /docs/docs/advanced-flag/react-vite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/react-vite.md -------------------------------------------------------------------------------- /docs/docs/advanced-flag/tailwind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/tailwind.md -------------------------------------------------------------------------------- /docs/docs/advanced-flag/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/advanced-flag/websocket.md -------------------------------------------------------------------------------- /docs/docs/blueprint-core/db-drivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/blueprint-core/db-drivers.md -------------------------------------------------------------------------------- /docs/docs/blueprint-core/frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/blueprint-core/frameworks.md -------------------------------------------------------------------------------- /docs/docs/blueprint-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/blueprint-ui.md -------------------------------------------------------------------------------- /docs/docs/creating-project/air.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/creating-project/air.md -------------------------------------------------------------------------------- /docs/docs/creating-project/makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/creating-project/makefile.md -------------------------------------------------------------------------------- /docs/docs/creating-project/project-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/creating-project/project-init.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/mongo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/mongo.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/redis.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/scylladb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/scylladb.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/server.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/sql.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/web.md -------------------------------------------------------------------------------- /docs/docs/endpoints-test/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/endpoints-test/websocket.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/public/blueprint_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/blueprint_1.png -------------------------------------------------------------------------------- /docs/docs/public/blueprint_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/blueprint_advanced.png -------------------------------------------------------------------------------- /docs/docs/public/blueprint_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/blueprint_ui.png -------------------------------------------------------------------------------- /docs/docs/public/htmx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/htmx.png -------------------------------------------------------------------------------- /docs/docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/logo.png -------------------------------------------------------------------------------- /docs/docs/public/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/react.png -------------------------------------------------------------------------------- /docs/docs/public/tailwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/docs/public/tailwind.png -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/main.go -------------------------------------------------------------------------------- /public/advanced.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/advanced.gif -------------------------------------------------------------------------------- /public/blueprint_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/blueprint_1.png -------------------------------------------------------------------------------- /public/blueprint_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/blueprint_advanced.png -------------------------------------------------------------------------------- /public/database.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/database.gif -------------------------------------------------------------------------------- /public/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/example.gif -------------------------------------------------------------------------------- /public/frameworks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/frameworks.gif -------------------------------------------------------------------------------- /public/install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/install.gif -------------------------------------------------------------------------------- /public/license.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/license.gif -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/stats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/stats.gif -------------------------------------------------------------------------------- /public/ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/public/ui.gif -------------------------------------------------------------------------------- /scripts/completions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/scripts/completions.sh -------------------------------------------------------------------------------- /scripts/create-npm-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melkeydev/go-blueprint/HEAD/scripts/create-npm-packages.sh --------------------------------------------------------------------------------