gitextract_pi_oupt8/ ├── .editorconfig ├── .github/ │ └── workflows/ │ ├── go.yml │ └── goreleaser.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── app.json ├── config/ │ └── config.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── internal/ │ ├── cache/ │ │ └── cache.go │ ├── context/ │ │ └── app_context.go │ ├── controller/ │ │ ├── healthcheck.go │ │ ├── healthcheck_test.go │ │ ├── init_test.go │ │ ├── metric_test.go │ │ ├── user-list.go │ │ ├── user.go │ │ └── user_test.go │ ├── core/ │ │ ├── cache_store.go │ │ ├── error_handler.go │ │ ├── errors/ │ │ │ └── boom.go │ │ ├── middleware/ │ │ │ └── app_context.go │ │ ├── router.go │ │ ├── server.go │ │ ├── template.go │ │ ├── user_store.go │ │ └── validator.go │ ├── i18n/ │ │ └── i18n.go │ ├── models/ │ │ ├── models.go │ │ └── user.go │ └── store/ │ ├── cache.go │ └── user.go ├── locales/ │ └── en/ │ └── default.po ├── main.go ├── scripts/ │ └── create.db.sql └── web/ ├── .babelrc ├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json ├── src/ │ ├── app/ │ │ ├── app.js │ │ ├── components/ │ │ │ ├── header.js │ │ │ └── like-button.js │ │ ├── index.js │ │ └── styles.scss │ └── global/ │ ├── app.js │ ├── global.html │ ├── index.js │ └── styles.scss └── templates/ ├── layouts/ │ └── base.html └── pages/ ├── user-list.html └── user.html