├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── main.yaml ├── .gitignore ├── Dockerfile ├── README.MD ├── SECURITY.md ├── cmd └── main.go ├── compose.yml ├── go.mod ├── go.sum ├── internal ├── middleware │ └── middleware.go ├── services │ └── service.go ├── template │ └── template.go └── webserver │ └── web.go ├── locales └── .gitkeep ├── models └── .gitkeep ├── nextjs ├── .gitignore ├── .npmrc ├── app │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── next.config.build.js ├── next.config.dev.js ├── next.config.js ├── nextjs.go ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── .gitkeep ├── tailwind.config.js └── tsconfig.json ├── pkg └── .gitkeep └── routes ├── no_route.go └── routes.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/README.MD -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/cmd/main.go -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/go.sum -------------------------------------------------------------------------------- /internal/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/internal/middleware/middleware.go -------------------------------------------------------------------------------- /internal/services/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/internal/services/service.go -------------------------------------------------------------------------------- /internal/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/internal/template/template.go -------------------------------------------------------------------------------- /internal/webserver/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/internal/webserver/web.go -------------------------------------------------------------------------------- /locales/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/.gitignore -------------------------------------------------------------------------------- /nextjs/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /nextjs/app/globals.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/app/page.tsx -------------------------------------------------------------------------------- /nextjs/next.config.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/next.config.build.js -------------------------------------------------------------------------------- /nextjs/next.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/next.config.dev.js -------------------------------------------------------------------------------- /nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/next.config.js -------------------------------------------------------------------------------- /nextjs/nextjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/nextjs.go -------------------------------------------------------------------------------- /nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/package-lock.json -------------------------------------------------------------------------------- /nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/package.json -------------------------------------------------------------------------------- /nextjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/postcss.config.js -------------------------------------------------------------------------------- /nextjs/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nextjs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/tailwind.config.js -------------------------------------------------------------------------------- /nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/nextjs/tsconfig.json -------------------------------------------------------------------------------- /pkg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/no_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/routes/no_route.go -------------------------------------------------------------------------------- /routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloadlife/nextgo/HEAD/routes/routes.go --------------------------------------------------------------------------------