├── .air.windows.conf ├── .env ├── .gitignore ├── .vscode └── launch.json ├── ReadMe.md ├── app.go ├── controllers ├── Auth.go └── Index.go ├── database └── database.go ├── docs ├── ADDING_FEATURES.md ├── AUTHENTICATION.md ├── DATABASE.md └── GETTING_STARTED.md ├── go.mod ├── go.sum ├── main.go ├── middleware └── middleware.go ├── migrations ├── m_00001_Down.sql └── m_00001_Up.sql ├── models ├── book.go └── user.go ├── providers ├── auth.go ├── config.go ├── hash.go └── session.go ├── public └── site.js ├── repos ├── book.go └── user.go ├── routes └── routes.go ├── utils └── utils.go └── views ├── Auth ├── login.django ├── register.django └── userinfo.django ├── Common └── soft_error.django ├── Home ├── index.django └── secret.django ├── layouts └── main.django └── partials ├── footer.django └── header.django /.air.windows.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/.air.windows.conf -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp/build-errors.log 2 | tmp/main.exe 3 | FiberStarter 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/ReadMe.md -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/app.go -------------------------------------------------------------------------------- /controllers/Auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/controllers/Auth.go -------------------------------------------------------------------------------- /controllers/Index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/controllers/Index.go -------------------------------------------------------------------------------- /database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/database/database.go -------------------------------------------------------------------------------- /docs/ADDING_FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/docs/ADDING_FEATURES.md -------------------------------------------------------------------------------- /docs/AUTHENTICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/docs/AUTHENTICATION.md -------------------------------------------------------------------------------- /docs/DATABASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/docs/DATABASE.md -------------------------------------------------------------------------------- /docs/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/docs/GETTING_STARTED.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/main.go -------------------------------------------------------------------------------- /middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/middleware/middleware.go -------------------------------------------------------------------------------- /migrations/m_00001_Down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/migrations/m_00001_Down.sql -------------------------------------------------------------------------------- /migrations/m_00001_Up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/migrations/m_00001_Up.sql -------------------------------------------------------------------------------- /models/book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/models/book.go -------------------------------------------------------------------------------- /models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/models/user.go -------------------------------------------------------------------------------- /providers/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/providers/auth.go -------------------------------------------------------------------------------- /providers/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/providers/config.go -------------------------------------------------------------------------------- /providers/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/providers/hash.go -------------------------------------------------------------------------------- /providers/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/providers/session.go -------------------------------------------------------------------------------- /public/site.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /repos/book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/repos/book.go -------------------------------------------------------------------------------- /repos/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/repos/user.go -------------------------------------------------------------------------------- /routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/routes/routes.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/utils/utils.go -------------------------------------------------------------------------------- /views/Auth/login.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/Auth/login.django -------------------------------------------------------------------------------- /views/Auth/register.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/Auth/register.django -------------------------------------------------------------------------------- /views/Auth/userinfo.django: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/Common/soft_error.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/Common/soft_error.django -------------------------------------------------------------------------------- /views/Home/index.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/Home/index.django -------------------------------------------------------------------------------- /views/Home/secret.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/Home/secret.django -------------------------------------------------------------------------------- /views/layouts/main.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/layouts/main.django -------------------------------------------------------------------------------- /views/partials/footer.django: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/partials/header.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGhoul/FiberStarter/HEAD/views/partials/header.django --------------------------------------------------------------------------------