{"id":23973209,"url":"https://github.com/filipegalo/developer_notifier","last_synced_at":"2026-05-04T10:31:14.226Z","repository":{"id":270278047,"uuid":"868592355","full_name":"filipegalo/developer_notifier","owner":"filipegalo","description":"One tool for all your JIRA issues and GitHub/GitLab pull requests","archived":false,"fork":false,"pushed_at":"2024-10-07T17:50:31.000Z","size":132,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T15:51:12.750Z","etag":null,"topics":["devops-tools","fastapi","nuxt","postgresql","tools"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/filipegalo.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}},"created_at":"2024-10-06T19:11:55.000Z","updated_at":"2024-12-30T15:54:46.000Z","dependencies_parsed_at":"2024-12-30T00:21:17.357Z","dependency_job_id":"76e79316-0ed8-4762-84da-add9c6f108ed","html_url":"https://github.com/filipegalo/developer_notifier","commit_stats":null,"previous_names":["filipegalo/developer_notifier"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/filipegalo/developer_notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipegalo%2Fdeveloper_notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipegalo%2Fdeveloper_notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipegalo%2Fdeveloper_notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipegalo%2Fdeveloper_notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/filipegalo","download_url":"https://codeload.github.com/filipegalo/developer_notifier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipegalo%2Fdeveloper_notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285043888,"owners_count":27105357,"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","status":"online","status_checked_at":"2025-11-18T02:00:05.759Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["devops-tools","fastapi","nuxt","postgresql","tools"],"created_at":"2025-01-07T04:17:33.896Z","updated_at":"2025-11-18T10:03:19.730Z","avatar_url":"https://github.com/filipegalo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Developer Notifier\n\nThe main purpose of this project is to fetch and display:\n\n1. GitHub pull requests assigned to the user\n2. GitHub pull requests where the user is requested for review\n3. Jira issues assigned to the user\n\nThis application serves as a centralized dashboard for developers to keep track of their tasks and review requests across different platforms, enhancing productivity and workflow management.\n\n## Prerequisites\n\n- Python 3.12+\n- Node.js 20+\n- Docker (optional)\n\n## Getting Started\n\n### Docker Setup\n\nTo run the entire application using Docker:\n\n1. Ensure Docker and Docker Compose are installed on your system.\n\n2. Build and start the containers:\n\n   ```\n   docker-compose up -d --build\n   ```\n\n3. Access the application at `http://localhost:8080`\n\n### Backend Setup\n\n1. Navigate to the `backend` directory:\n\n   ```\n   cd backend\n   ```\n\n2. Create a virtual environment and activate it:\n\n   ```\n   python -m venv venv\n   source venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n   ```\n\n3. Install dependencies:\n\n   ```\n   pip install -r requirements.txt\n   ```\n\n4. Set up your environment variables by copying `.env.example` to `.env` and modifying as needed:\n\n   ```\n   cp .env.example .env\n   ```\n\n5. Run database migrations:\n\n   ```\n   alembic upgrade head\n   ```\n\n6. Start the FastAPI server:\n   ```\n   fastapi dev app/main.py\n   ```\n\n### Frontend Setup\n\n1. Navigate to the `frontend` directory:\n\n   ```\n   cd frontend\n   ```\n\n2. Install dependencies:\n\n   ```\n   npm install\n   ```\n\n3. Start the Nuxt.js development server:\n   ```\n   npm run dev\n   ```\n\n## Project Structure\n\n- `backend/`: FastAPI application\n  - `app/`: Main application code\n  - `alembic/`: Database migration scripts\n- `frontend/`: Nuxt.js application\n- `docker-compose.yml`: Docker composition file\n\n## Application Setup\n\n1. Ensure both the backend and frontend servers are running as described in the setup sections above.\n\n2. Open your web browser and navigate to:\n\n   ```\n   http://localhost:3000 or http://localhost:8080 (if you are using Docker)\n   ```\n\n   This will open the frontend application, which communicates with the backend API.\n\n3. You will see the main page with the message: Settings not found. Please configure your settings.\n\n4. Click on the \"Open Settings\" button in the top menu.\n\n5. Enter your GitHub and Jira credentials:\n\n   - Jira API Email:\n   - Jira API Key:\n   - Jira API URL:\n   - GitHub Access Token:\n   - GitHub Organization:\n   - GitHub API URL:\n   - GitHub User:\n   - User Name:\n\nNote:\n\n- You can get the GitHub Access Token from [here](https://github.com/settings/tokens).\n- You can get the Jira API Key from [here](https://id.atlassian.com/manage-profile/security/api-tokens).\n\n## License\n\nThis project is licensed under the WTFPL License. See the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffilipegalo%2Fdeveloper_notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffilipegalo%2Fdeveloper_notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffilipegalo%2Fdeveloper_notifier/lists"}