├── .github ├── dependabot.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── article └── article.go ├── database └── .dir4db ├── db └── db.go ├── docker-compose.yml ├── favicon.ico ├── go.mod ├── go.sum ├── handler ├── article.go ├── article_test.go ├── handler.go ├── handler_test.go ├── request.go ├── response.go ├── routes.go ├── user.go ├── user_test.go └── validator.go ├── logo.png ├── main.go ├── model ├── article.go └── user.go ├── router └── router.go ├── start.sh ├── store ├── article.go └── user.go ├── user └── user.go └── utils ├── errors.go └── jwt.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/README.md -------------------------------------------------------------------------------- /article/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/article/article.go -------------------------------------------------------------------------------- /database/.dir4db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/db/db.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/favicon.ico -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/go.sum -------------------------------------------------------------------------------- /handler/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/article.go -------------------------------------------------------------------------------- /handler/article_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/article_test.go -------------------------------------------------------------------------------- /handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/handler.go -------------------------------------------------------------------------------- /handler/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/handler_test.go -------------------------------------------------------------------------------- /handler/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/request.go -------------------------------------------------------------------------------- /handler/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/response.go -------------------------------------------------------------------------------- /handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/routes.go -------------------------------------------------------------------------------- /handler/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/user.go -------------------------------------------------------------------------------- /handler/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/user_test.go -------------------------------------------------------------------------------- /handler/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/handler/validator.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/main.go -------------------------------------------------------------------------------- /model/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/model/article.go -------------------------------------------------------------------------------- /model/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/model/user.go -------------------------------------------------------------------------------- /router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/router/router.go -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/start.sh -------------------------------------------------------------------------------- /store/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/store/article.go -------------------------------------------------------------------------------- /store/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/store/user.go -------------------------------------------------------------------------------- /user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/user/user.go -------------------------------------------------------------------------------- /utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/utils/errors.go -------------------------------------------------------------------------------- /utils/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpody/golang-fiber-realworld-example-app/HEAD/utils/jwt.go --------------------------------------------------------------------------------