{"id":29112420,"url":"https://github.com/cdelriot1121/deploy-web.aws","last_synced_at":"2026-05-14T12:33:21.837Z","repository":{"id":299509202,"uuid":"1003246925","full_name":"cdelriot1121/deploy-web.aws","owner":"cdelriot1121","description":"Primera App web en AWS","archived":false,"fork":false,"pushed_at":"2025-06-25T20:11:25.000Z","size":75,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-08T22:29:41.934Z","etag":null,"topics":["aws","aws-ec2","aws-s3","deploy","testing"],"latest_commit_sha":null,"homepage":"https://deploy-web-aws-staticsite.onrender.com/","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/cdelriot1121.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-16T21:16:31.000Z","updated_at":"2025-06-29T14:03:48.000Z","dependencies_parsed_at":"2025-10-08T22:29:36.945Z","dependency_job_id":"bc2e5f00-8c29-4cab-b1c2-1c4eabf362ad","html_url":"https://github.com/cdelriot1121/deploy-web.aws","commit_stats":null,"previous_names":["cdelriot1121/deploy-web.aws"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cdelriot1121/deploy-web.aws","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdelriot1121%2Fdeploy-web.aws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdelriot1121%2Fdeploy-web.aws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdelriot1121%2Fdeploy-web.aws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdelriot1121%2Fdeploy-web.aws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdelriot1121","download_url":"https://codeload.github.com/cdelriot1121/deploy-web.aws/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdelriot1121%2Fdeploy-web.aws/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33025044,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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":["aws","aws-ec2","aws-s3","deploy","testing"],"created_at":"2025-06-29T10:39:05.990Z","updated_at":"2026-05-14T12:33:21.831Z","avatar_url":"https://github.com/cdelriot1121.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TaskMaster - Gestión de Tareas\n\n## Descripción\nEste es un proyecto de práctica para aprender sobre el despliegue de aplicaciones web en Amazon Web Services (AWS). Consiste en una aplicación básica de gestión de tareas (todo-list) con frontend y backend separados.\n\n## 🚀 Live Demo\n\nPuedes acceder a la aplicación desplegada aquí:\n[**Link**](http://taskmaster-front-bucket1112.s3-website-sa-east-1.amazonaws.com/)\n\n\n---\n\n## Arquitectura del Despliegue en AWS\n\nEsta aplicación está desplegada en Amazon Web Services (AWS) utilizando los siguientes servicios:\n\n* **Frontend (HTML, CSS, JavaScript):** Alojado en [Amazon S3](https://aws.amazon.com/s3/) como un sitio web estático.\n* **Backend (Node.js Express):** Desplegado en una instancia [Amazon EC2](https://aws.amazon.com/ec2/) (Ubuntu Server) y gestionado con [PM2](https://pm2.keymetrics.io/).\n* **Base de Datos (MySQL):** Gestionada por [Amazon RDS](https://aws.amazon.com/rds/) (Relational Database Service).\n\n\n---\n\n## Cómo Ejecutar Localmente (Desarrollo)\n\n**Requisitos:**\n* Node.js (LTS recomendado)\n* MySQL (o un servicio de base de datos compatible)\n\n1.  **Clonar el Repositorio:**\n    ```bash\n    git clone https://github.com/cdelriot1121/deploy-web.aws.git\n    ```\n    ```\n    cd deploy-web.aws\n    ```\n2.  **Configurar el Backend:**\n    ```bash\n    cd backend\n    ```\n    ```\n    npm install\n    ```\n    \n    \n    ### Crea un archivo .env y configúralo con tus credenciales locales de MySQL\n\n    ```env\n    DB_HOST=localhost\n    DB_USER=root\n    DB_PASSWORD=your_mysql_password\n    DB_NAME=task_db\n    PORT=3000\n    ```\n    \n3.  **Iniciar el Backend:**\n    ```bash\n    npm start\n    ```\n4.  **Abrir el Frontend:**\n    Abre `index.html` directamente en tu navegador (o usa una extensión de servidor local como Live Server en VS Code si es necesario).\n\n---\n\n## Pruebas Automatizadas (CI/CD)\n\nEste proyecto incluye un flujo de trabajo de GitHub Actions para realizar pruebas de integración (end-to-end) en el entorno desplegado. Esto asegura que la aplicación funciona correctamente después de cada cambio.\n\nPara más detalles sobre los tests, consulta el archivo `.github/workflows/deploy-and-test.yml` y la carpeta `tests/`.\n\n---\n\n## Contacto\n\nSi tienes alguna pregunta o sugerencia, montas un issue o directamente reporta en otro lugar :D","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdelriot1121%2Fdeploy-web.aws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdelriot1121%2Fdeploy-web.aws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdelriot1121%2Fdeploy-web.aws/lists"}