{"id":15324578,"url":"https://github.com/mrinjamul/mrinjamul-admin","last_synced_at":"2026-05-02T14:38:07.213Z","repository":{"id":104210107,"uuid":"377070545","full_name":"mrinjamul/mrinjamul-admin","owner":"mrinjamul","description":"Admin Panel for mrinjamul.github.io","archived":false,"fork":false,"pushed_at":"2021-08-27T14:43:52.000Z","size":2180,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T18:43:48.895Z","etag":null,"topics":["admin-dashboard","go","golang","heroku","security"],"latest_commit_sha":null,"homepage":"https://mrinjamul-admin.herokuapp.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrinjamul.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-15T07:13:00.000Z","updated_at":"2021-08-27T14:43:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"f80647b8-2095-4f4d-9644-c5a71baae78e","html_url":"https://github.com/mrinjamul/mrinjamul-admin","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.03125,"last_synced_commit":"9c6b58a0a2385f548d5250d38fd7d5f35ffc4d02"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrinjamul%2Fmrinjamul-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrinjamul%2Fmrinjamul-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrinjamul%2Fmrinjamul-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrinjamul%2Fmrinjamul-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrinjamul","download_url":"https://codeload.github.com/mrinjamul/mrinjamul-admin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245864255,"owners_count":20684994,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin-dashboard","go","golang","heroku","security"],"created_at":"2024-10-01T09:27:18.399Z","updated_at":"2026-05-02T14:38:07.179Z","avatar_url":"https://github.com/mrinjamul.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Golang Adminer\n\nAdmin Panel for mrinjamul.github.io\n\n## Used Tools and Technologies\n\n- [Golang](https://golang.org/)\n- [NodeJs](https://nodejs.org/) (Required: 12+ ,Recommanded: 14 LTS)\n- [Docker](https://www.docker.com/) (Optional)\n\n- [Auth0 Account](https://auth0.com/)\n- [Firebase](https://firebase.google.com/)\n- [Gin Gonic](https://gin-gonic.com/)\n- [JWT](https://github.com/square/go-jose)\n- [xid](https://github.com/rs/xid)\n- [Reactstrap](https://reactstrap.github.io/)\n- [React Font Awesome](https://github.com/FortAwesome/react-fontawesome)\n- [highlight.js](https://highlightjs.org/) (Imported buthNot Used)\n\n## Required secrets\n\nFor ENV,\n\n    # Golang ENV (.env)\n    GIN_MODE=release\n    PORT=\u003cyour port\u003e\n    AUTH0_API_IDENTIFIER=\u003cauth0 api identifier\u003e\n    AUTH0_DOMAIN=\u003cauth0 api domain\u003e\n\n    # ReactJs ENV (ui/.env)\n    REACT_APP_API_URL=\u003cyour API server url\u003e\n    REACT_APP_AUTH0_DOMAIN=\u003cauth0 api domain\u003e\n    REACT_APP_AUTH0_CLIENTID=\u003cauth0 Application Client ID\u003e\n    REACT_APP_AUTH0_AUDIENCE=\u003cauth0 API Audience\u003e\n\nAnd Firebase admin sdk private key,\n\n- `serviceAccountKey.json`\n\nPut `serviceAccountKey.json` in project's root directory.\n\nNote: auth_config.json does not required. It's removed.\n\n## Build\n\n### Docker\n\n```shell\ndocker build -t mrinjamul-admin:latest .\n```\n\n### Normal Build\n\nFor server,\n\n```shell\ngo mod download\ngo build -o main .\n```\n\nFor UI,\n\n```shell\ncd ui\nnpm install\ntouch .env # Write environment variables\nnpm run build\ncp -rf build ../static\ncd ..\n```\n\n## Running\n\n### Run normally\n\n```shell\ntouch .env # Write environment variables\nsource .env\n./main\n```\n\n### Docker\n\n```shell\ndocker run --rm -dp 3000:3000 --name myadmin mrinjamul-admin:latest\n```\n\n## Endpoints\n\n| Methods | Endpoints         | Description                                            |\n| ------- | ----------------- | ------------------------------------------------------ |\n| GET     | /api/ping         | Use for ping                                           |\n| GET     | /api/projects     | fetch project informations                             |\n| POST    | /api/messages     | send messeges to firestore                             |\n| GET     | /api/messages     | fetch messeges from firestore (protected)              |\n| DELETE  | /api/messages/:id | NEED TO IMPLEMENT (WIP) (delete a messege) (protected) |\n| PUT     | /api/messages     | NEED TO IMPLEMENT (WIP) (mark as read) (protected)     |\n\n## Author\n\n- Injamul Mohammad Mollah \u003cmrinjamul@gmail.com\u003e\n\n## License\n\n- under [MIT license](https://github.com/mrinjamul/mrinjamul-admin/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrinjamul%2Fmrinjamul-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrinjamul%2Fmrinjamul-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrinjamul%2Fmrinjamul-admin/lists"}