{"id":25436898,"url":"https://github.com/agent-hellboy/gitnotify","last_synced_at":"2025-09-14T22:32:16.557Z","repository":{"id":276538140,"uuid":"918380359","full_name":"Agent-Hellboy/gitnotify","owner":"Agent-Hellboy","description":"just checking if AI is epic shit or not until the product become usable","archived":false,"fork":false,"pushed_at":"2025-02-08T21:13:49.000Z","size":217,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T08:34:39.365Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Agent-Hellboy.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":"2025-01-17T20:12:00.000Z","updated_at":"2025-02-10T05:28:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"b8ef74c9-b367-4853-9a2c-855b5e406be8","html_url":"https://github.com/Agent-Hellboy/gitnotify","commit_stats":null,"previous_names":["agent-hellboy/gitnotify"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Fgitnotify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Fgitnotify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Fgitnotify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Fgitnotify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Agent-Hellboy","download_url":"https://codeload.github.com/Agent-Hellboy/gitnotify/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254270656,"owners_count":22042860,"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":[],"created_at":"2025-02-17T08:29:34.592Z","updated_at":"2025-05-15T04:10:35.898Z","avatar_url":"https://github.com/Agent-Hellboy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"🤖 Welcome to the AI-Powered Development Revolution! 🚀\n\nThis repository is my experiment in \"Zero-Brain Development\" - where I'm letting AI do the heavy lifting while I sit back with popcorn 🍿. Using the power of AI, we're building a modern SaaS application with Django and React, and I'm just here to watch the magic happen.\n\n🧪 The Experiment:\n- Going full AI mode: My brain is on vacation while AI does the coding\n- Time Tracking: Documenting how fast AI can build a production-ready app\n- Tracking When i need to push AI and When i don't need to push AI\n\n💡 Think of it as \"Inception\" but for coding - it's AI all the way down!\n\nThe fun part is even the code push is automated and I am thinking of giving commands verbally\n\n# GitNotify\n\nA full-stack application that sends daily email summaries of GitHub issues using Django and React.\n\n## Features\n\n- User authentication with JWT\n- GitHub repository integration\n- Customizable notification preferences\n- Daily email digests of GitHub issues\n- Real-time issue tracking\n- Modern React UI with Material-UI\n- Background task processing with Celery\n\n## Tech Stack\n\n### Backend\n- Django\n- Django REST Framework\n- Celery (with Redis)\n- PostgreSQL\n- JWT Authentication\n\n### Frontend\n- React\n- TypeScript\n- Material-UI\n- Redux Toolkit\n- React Router\n\n## Running with Docker Compose (Recommended)\n\n### Prerequisites\n- Docker\n- Docker Compose\n\n### Steps\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/Agent-Hellboy/gitnotify.git\ncd gitnotify\n```\n\n2. Create a `.env` file in the root directory:\n```env\nDEBUG=0\nSECRET_KEY=your-secret-key\nEMAIL_HOST=smtp.gmail.com\nEMAIL_PORT=587\nEMAIL_HOST_USER=your-email@gmail.com\nEMAIL_HOST_PASSWORD=your-app-specific-password\nGITHUB_TOKEN=your-github-personal-access-token\n```\n\n3. Build and start the services:\n```bash\ndocker-compose up --build\n```\n\n4. Create a superuser (in a new terminal):\n```bash\ndocker-compose exec backend python manage.py createsuperuser\n```\n\nThe application will be available at:\n- Frontend: http://localhost:80\n- Backend API: http://localhost:80/api\n- Admin Interface: http://localhost:80/admin\n\n## Local Development Setup\n\n### Prerequisites\n- Python 3.8+\n- Node.js 14+\n- Redis\n- PostgreSQL\n\n### PostgreSQL Setup\n\n1. Install PostgreSQL:\n```bash\nbrew install postgresql@14\nbrew services start postgresql\n```\n\n2. Create database and user:\n```bash\npsql postgres\n\n# In psql shell:\nCREATE DATABASE gitnotify;\nCREATE USER gitnotify WITH PASSWORD 'your_password';\nALTER ROLE gitnotify SET client_encoding TO 'utf8';\nALTER ROLE gitnotify SET default_transaction_isolation TO 'read committed';\nALTER ROLE gitnotify SET timezone TO 'UTC';\nGRANT ALL PRIVILEGES ON DATABASE gitnotify TO gitnotify;\n\\q\n```\n\n### Backend Setup\n\n1. Create and activate virtual environment:\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n2. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n3. Create `.env` file:\n```env\nDEBUG=True\nSECRET_KEY=your-secret-key\nDATABASE_URL=postgresql://gitnotify:your_password@localhost:5432/gitnotify\nEMAIL_HOST=smtp.gmail.com\nEMAIL_PORT=587\nEMAIL_HOST_USER=your-email@gmail.com\nEMAIL_HOST_PASSWORD=your-app-specific-password\nGITHUB_TOKEN=your-github-personal-access-token\n```\n\n4. Run migrations:\n```bash\npython manage.py migrate\n```\n\n5. Create superuser:\n```bash\npython manage.py createsuperuser\n```\n\n6. Install and start Redis server:\n```bash\n# Install Redis\nbrew install redis\n\n# Start Redis server\nbrew services start redis\n# or\nredis-server\n```\n\n7. Start Celery worker (in a new terminal):\n```bash\ncelery -A gitnotify worker -l info\n```\n\n8. Start Celery beat (in a new terminal):\n```bash\ncelery -A gitnotify beat -l info\n```\n\n9. Run Django development server:\n```bash\npython manage.py runserver\n```\n\n### Frontend Setup\n\n1. Install dependencies:\n```bash\ncd frontend\nnpm install\n```\n\n2. Start development server:\n```bash\nnpm start\n```\n\n## Usage\n\n1. Access the application at http://localhost:3000\n2. Log in with your credentials\n3. Add GitHub repositories to monitor\n4. Configure notification preferences\n5. Receive daily email digests of your GitHub issues\n\n## Development Commands\n\n### Backend\n```bash\n# Format code\nblack .\n\n# Sort imports\nisort .\n\n# Check code quality\nflake8 .\n```\n\n### Frontend\n```bash\n# Check linting\nnpm run lint\n\n# Fix linting issues\nnpm run lint:fix\n\n# Format code\nnpm run format\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-hellboy%2Fgitnotify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagent-hellboy%2Fgitnotify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-hellboy%2Fgitnotify/lists"}