{"id":30216751,"url":"https://github.com/damiancodes/csoftwareengineertask_domian","last_synced_at":"2025-08-14T03:49:41.902Z","repository":{"id":304583485,"uuid":"1019188714","full_name":"damiancodes/csoftwareEngineertask_Domian","owner":"damiancodes","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-14T01:55:04.000Z","size":23917,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-14T04:32:41.665Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/damiancodes.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":"2025-07-13T23:46:33.000Z","updated_at":"2025-07-14T01:55:07.000Z","dependencies_parsed_at":"2025-07-14T04:43:17.536Z","dependency_job_id":null,"html_url":"https://github.com/damiancodes/csoftwareEngineertask_Domian","commit_stats":null,"previous_names":["damiancodes/csoftwareengineertask_domian"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/damiancodes/csoftwareEngineertask_Domian","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damiancodes%2FcsoftwareEngineertask_Domian","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damiancodes%2FcsoftwareEngineertask_Domian/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damiancodes%2FcsoftwareEngineertask_Domian/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damiancodes%2FcsoftwareEngineertask_Domian/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/damiancodes","download_url":"https://codeload.github.com/damiancodes/csoftwareEngineertask_Domian/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damiancodes%2FcsoftwareEngineertask_Domian/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270358998,"owners_count":24570444,"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-08-14T02:00:10.309Z","response_time":75,"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":[],"created_at":"2025-08-14T03:49:40.588Z","updated_at":"2025-08-14T03:49:41.887Z","avatar_url":"https://github.com/damiancodes.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Manager System\n\nA modern, easy-to-use task management system for teams and organizations. Built with Laravel, Vanilla JavaScript, and Bootstrap. Features include role-based access, email notifications, and a responsive interface.\n\n## Features\n\n- User management with admin/user roles\n- Assign and track tasks with deadlines and statuses\n- Email notifications for task assignments\n- RESTful API backend (Laravel)\n- Clean, responsive frontend (Vanilla JS + Bootstrap)\n- Dockerized for easy setup\n- MySQL database\n- MailHog for email testing\n\n## Quick Start\n\n1. **Clone the repository:**\n   ```bash\n   git clone \u003cyour-repository-url\u003e\n   cd taskmanager\n   ```\n   \u003e Replace `\u003cyour-repository-url\u003e` with the actual URL if you are sharing via GitHub or another platform.\n2. **Run the setup script:**\n   ```bash\n   ./setup.sh\n   ```\n   This will start all services, set up the database, and seed demo data.\n\n3. **Access the app:**\n   - Frontend: http://localhost\n   - Backend API: http://localhost:8000\n   - MailHog (email testing): http://localhost:8025\n\n4. **Demo logins:**\n   - Admin: admin@taskmanager.com / password\n   - User: john@taskmanager.com / password\n\n## Project Structure\n\n- `backend/` — Laravel API\n- `frontend/` — Static frontend (HTML, JS, CSS)\n- `docker-compose.yml` — Orchestrates all services\n- `setup.sh` — One-step setup script\n\n## API Endpoints\n\n### Authentication\n- `POST   /api/login` — Login\n- `POST   /api/logout` — Logout (requires auth)\n- `GET    /api/user` — Get current user (requires auth)\n\n### Users (Admin only)\n- `POST   /api/register` — Register new user\n- `POST   /api/users` — Register new user (alias)\n- `GET    /api/users` — List all users\n- `GET    /api/users/{user}` — Get user by ID\n- `PUT    /api/users/{user}` — Update user\n- `DELETE /api/users/{user}` — Delete user\n\n### Tasks\n- `GET    /api/tasks` — List all tasks\n- `POST   /api/tasks` — Create a new task\n- `GET    /api/tasks/{task}` — Get task by ID\n- `PUT    /api/tasks/{task}` — Update task\n- `PATCH  /api/tasks/{task}/status` — Update task status\n- `DELETE /api/tasks/{task}` — Delete task\n\n## Development\n\n- **Backend:**\n  - Enter the backend container: `docker-compose exec backend bash`\n  - Run migrations: `php artisan migrate`\n  - Seed database: `php artisan db:seed`\n  - Generate app key: `php artisan key:generate`\n\n- **Frontend:**\n  - Served by Nginx, auto-reloads on file changes.\n\n- **Database:**\n  - Access MySQL: `docker-compose exec mysql mysql -u taskuser -p taskmanager`\n\n## Email Testing\n\n- All emails are sent to MailHog (http://localhost:8025) in development.\n- For production, update mail settings in `backend/.env`.\n\n## Troubleshooting\n\n- Make sure Docker and Docker Compose are installed.\n- If ports are in use, change them in `docker-compose.yml`.\n- If you see database errors, wait a few seconds and try again (MySQL may take time to start).\n- For email issues, check MailHog is running.\n\n## Database Import Instructions\n\nIf you want to restore the sample data:\n\n1. Start the containers:\n   ```bash\n   docker-compose up -d\n   ```\n2. Import the SQL dump:\n   ```bash\n   docker-compose exec -T mysql mysql -u taskuser -ptaskpass taskmanager \u003c taskmanager.sql\n   ```\n\nThis will restore the database to the state captured in `taskmanager.sql`.\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes and test\n4. Submit a pull request\n\n## License\n\nMIT License\n\n## Support\n\nFor questions or support, email: support@taskmanager.com ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamiancodes%2Fcsoftwareengineertask_domian","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdamiancodes%2Fcsoftwareengineertask_domian","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamiancodes%2Fcsoftwareengineertask_domian/lists"}