{"id":29600763,"url":"https://github.com/vitaee/gitissuetracker","last_synced_at":"2026-01-20T16:26:04.570Z","repository":{"id":302945628,"uuid":"861228570","full_name":"Vitaee/GitIssueTracker","owner":"Vitaee","description":"A simple github issue tracker api with fastapi","archived":false,"fork":false,"pushed_at":"2025-07-17T15:30:45.000Z","size":100,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-08T02:23:51.646Z","etag":null,"topics":["celery","docker","docker-compose","fastapi","postgresql","python","redis"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vitaee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-09-22T11:00:17.000Z","updated_at":"2025-07-17T15:30:50.000Z","dependencies_parsed_at":"2025-07-04T23:24:35.149Z","dependency_job_id":"acf4d560-afe2-44f3-9b8f-b4a544f4d7f4","html_url":"https://github.com/Vitaee/GitIssueTracker","commit_stats":null,"previous_names":["vitaee/gitissuetracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Vitaee/GitIssueTracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vitaee%2FGitIssueTracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vitaee%2FGitIssueTracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vitaee%2FGitIssueTracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vitaee%2FGitIssueTracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vitaee","download_url":"https://codeload.github.com/Vitaee/GitIssueTracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vitaee%2FGitIssueTracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607021,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":["celery","docker","docker-compose","fastapi","postgresql","python","redis"],"created_at":"2025-07-20T12:36:57.835Z","updated_at":"2026-01-20T16:26:04.554Z","avatar_url":"https://github.com/Vitaee.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Start Project\r\nI assume you already had `venv` to create virtual env. for the project dependencies. In ubuntu / WSL2 you should install it first.\r\n- `sudo apt install python-venv`\r\n\r\nThen create a virtual env:\r\n\r\n- `python -m venv my-env`\r\n\r\n- Activate it:  `source my-env/bin/activate`\r\n\r\nThen simply install dependencies:\r\n\r\n- `pip install -r requirements.txt`\r\n\r\nThen create your .env file with below variables:\r\n```\r\nENV=development\r\nPROJECT_NAME=Github Issue Tracker\r\nDATABASE_URL=postgresql+psycopg://testuser:testpass*@localhost/issue_tracker\r\nREDIS_URL=redis://localhost:6379/9\r\nGITHUB_TOKEN=your_github_token_here\r\nSECRET_KEY=bestsecret\r\nACCESS_TOKEN_EXPIRE_MINUTES=5\r\nMAIL_USERNAME=\"\"\r\nMAIL_PASSWORD=\"\"\r\nMAIL_FROM=test@gmail.com\r\nMAIL_PORT=1025\r\nMAIL_SERVER=localhost\r\nMAIL_TLS=False\r\nMAIL_SSL=False\r\nMAIL_STARTTLS=False\r\nMAIL_SSL_TLS=False\r\nUSE_CREDENTIALS=False\r\nVALIDATE_CERTS=False\r\nAPI_V1_STR=/api/v1\r\nPOSTGRES_USER=test\r\nPOSTGRES_PASSWORD=test*\r\nPOSTGRES_DB=test\r\nPOSTGRES_PORT=5432\r\n```\r\n\r\nFinally, simply start the app:\r\n\r\n- `uvicorn app.main:app --reload`\r\n\r\n\r\n### How To\r\n- First, register with an test or real email and use `/token/` endpoint and login with your credentials to get token which will need for other endpoints.\r\n- Secondly, track some real repository that exists on github. You wiil need to provide a github user name and repo name.\r\n- Finally check `https://canilgu.dev/mailhog` to see if you got an email from us for issue changes.\r\n- Furthermore, you can play with our api using `https://canilgu.dev/issue-tracker/docs`.\r\n\r\n\r\n### Docker for production\r\n\r\nInitially we could build our project.\r\n\r\n- `docker compose build`\r\n\r\nThen simply we could start our dockerized project like below:\r\n\r\n- `docker compose up -d`.\r\n\r\n\r\n### Celery\r\nStart worker:\r\n\r\n- celery -A worker.tasks worker --loglevel=info --pool=gevent --logfile=logs/celery.log\r\n\r\nStart beat:\r\n\r\n- celery -A worker.tasks beat --loglevel=info\r\n\r\n### Alembic\r\nFirstyl run below command\r\n- alembic init alembic/\r\n\r\nRun initial migrations:\r\n\r\n- `alembic revision --autogenerate -m \"initial migration\"`\r\n\r\nAutogenerate Migrations: To autogenerate migrations based on your models, you should run:\r\n\r\n- `alembic upgrade head`  # To apply existing migrations\r\n- `alembic revision` --autogenerate -m \"Your migration message\"\r\n- `alembic upgrade head`  # To apply the new migration\r\n\r\n### Tests\r\n\r\n- `pytest -s tests/`\r\n\r\nor trigger single test file:\r\n\r\n- `pytest -s tests/test_repos.py`\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvitaee%2Fgitissuetracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvitaee%2Fgitissuetracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvitaee%2Fgitissuetracker/lists"}