{"id":21768970,"url":"https://github.com/1001bit/pathgoer","last_synced_at":"2026-02-11T12:32:15.497Z","repository":{"id":254743267,"uuid":"847199387","full_name":"1001bit/pathgoer","owner":"1001bit","description":"a habit tracker (fullstack)","archived":false,"fork":false,"pushed_at":"2025-11-03T14:18:42.000Z","size":1987,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T15:10:56.646Z","etag":null,"topics":["docker","docker-compose","full-stack","go","golang","microservice"],"latest_commit_sha":null,"homepage":"","language":"Go","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/1001bit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-25T06:14:22.000Z","updated_at":"2025-11-03T14:18:48.000Z","dependencies_parsed_at":"2024-11-07T11:31:42.960Z","dependency_job_id":"3b12df95-f9e5-4a8f-9a2e-78a3a43c7f3a","html_url":"https://github.com/1001bit/pathgoer","commit_stats":{"total_commits":137,"total_committers":2,"mean_commits":68.5,"dds":"0.014598540145985384","last_synced_commit":"79a3478aa4e668ba6a613625d346f022f2d6e54e"},"previous_names":["1001bit/pathgoer","1001bit/diaryhood"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/1001bit/pathgoer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1001bit%2Fpathgoer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1001bit%2Fpathgoer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1001bit%2Fpathgoer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1001bit%2Fpathgoer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1001bit","download_url":"https://codeload.github.com/1001bit/pathgoer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1001bit%2Fpathgoer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29332988,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T06:13:03.264Z","status":"ssl_error","status_checked_at":"2026-02-11T06:12:55.843Z","response_time":97,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["docker","docker-compose","full-stack","go","golang","microservice"],"created_at":"2024-11-26T14:07:13.845Z","updated_at":"2026-02-11T12:32:15.491Z","avatar_url":"https://github.com/1001bit.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![wakatime](https://wakatime.com/badge/github/1001bit/pathgoer.svg)](https://wakatime.com/badge/github/1001bit/pathgoer)\n\n# PATHGOER\n\na productivity app made to gamify process of doing something for a long period of time\n## Current Features\n\n- One-time password sign in\n- Access JWT + Refresh UUID authN and authZ\n- Paths creation for each user\n- Stats creation for each path\n- Quota for each stat\n- Dynamic file storage, profile picture\n\n## Environment Variables\n\nTo run this project, you will need to create your own `.env` file based on `.env.example` file.\n\nThere are variables like: credentials to services, ports, secrets, keys etc.\n\nSpecifically, you want to set:\n\n`MG_API_KEY`: Mailgun API key\n\n`MG_DOMAIN`: Mailgun domain\n\n## Run Locally\n\nTo run you need **docker** and **docker compose**\n\nClone the project\n\n```bash\n  git clone https://github.com/1001bit/pathgoer\n```\n\nGo to the project directory\n\n```bash\n  cd pathgoer\n```\n\nInstall needed tools\n```bash\n  go install github.com/a-h/templ/cmd/templ@latest\n  go install google.golang.org/protobuf/cmd/protoc-gen-go@latest\n  go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest\n  # on ubuntu\n  sudo apt install protobuf-compiler\n```\n\nBuild and start\n\n```bash\n  make\n```\n\nYou can see the result on http://localhost:80 after successful start\n\nYou can see other commands in the Makefile\n\n## Testing\n\n**User service**: run `make test-user`\n\n**Path service**: run `make test-path`\n\n## Directories\n\n`config`: config files for some services\n\n`doc`: additional docs\n\n`protobuf`: protobuf files for gRPC servers\n\n`services`: services, their servers\n\n`shared`: golang code, shared between services\n\n`sql`: init sql scripts for databases\n\n`static`: static storage for css, js, etc.\n\n`typescript`: typescript code to be compiled into `static`\n\n## Editing typescript, protobuf, templ, shared code\n\nAfter editing one of this you can do `make gencopy` or `make` (both of them do all the stuff described later), but specifically:\n\n`make tscompile` **---** `.ts` files inside `typescript` directory are compiled to `static` directory according to their tsconfigs (python and typescript compiler required)\n\n`make protoc` **---** `.proto` files inside `protobuf` directory are compiled to `services/*service*/shared` directory (golang protoc required)\n\n`make templ` **---** `.templ` files inside `services/gateway/template` directory are compiled in the same directory (golang templ compiler required)\n\n`make copyshared` **---** `.go` files inside `shared` directory are copied to `services/*service*/shared` directory (python required)\n\n## Tech Stack\n\n**Client:** HTML, CSS, Javascript \u003c- Typescript\n\n**Server:** Docker, Golang + Many other libs used, PostgreSQL, Redis, gRPC, HTTP, RabbitMQ etc.\n\n## Additional Docs\n\nCan be found in `doc` directory\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1001bit%2Fpathgoer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1001bit%2Fpathgoer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1001bit%2Fpathgoer/lists"}