{"id":21251863,"url":"https://github.com/nawodyaishan/react-docker-workflow","last_synced_at":"2026-04-07T20:32:34.220Z","repository":{"id":208016822,"uuid":"720162120","full_name":"nawodyaishan/react-docker-workflow","owner":"nawodyaishan","description":"This project is a React application configured for Docker-based development and production workflows, integrated with Travis CI for continuous integration and deployment.","archived":false,"fork":false,"pushed_at":"2023-11-19T05:13:33.000Z","size":113,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-15T05:28:33.821Z","etag":null,"topics":["continuous-integration","docker","docker-compose","docker-image","google-cloud-platform","jest","react","travis-ci","typescript","vite","workflow"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/nawodyaishan.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}},"created_at":"2023-11-17T18:00:28.000Z","updated_at":"2023-11-19T05:09:20.000Z","dependencies_parsed_at":"2023-11-19T06:27:16.386Z","dependency_job_id":"096c933f-ceb4-4baa-91c8-d1c0a43aec47","html_url":"https://github.com/nawodyaishan/react-docker-workflow","commit_stats":null,"previous_names":["nawodyaishan/react-docker-workflow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nawodyaishan/react-docker-workflow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nawodyaishan%2Freact-docker-workflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nawodyaishan%2Freact-docker-workflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nawodyaishan%2Freact-docker-workflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nawodyaishan%2Freact-docker-workflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nawodyaishan","download_url":"https://codeload.github.com/nawodyaishan/react-docker-workflow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nawodyaishan%2Freact-docker-workflow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31528451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["continuous-integration","docker","docker-compose","docker-image","google-cloud-platform","jest","react","travis-ci","typescript","vite","workflow"],"created_at":"2024-11-21T03:45:04.278Z","updated_at":"2026-04-07T20:32:34.194Z","avatar_url":"https://github.com/nawodyaishan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Docker Workflow\n[![Build Status](https://app.travis-ci.com/nawodyaishan/react-docker-workflow.svg?token=DKf3NVCcwz23mmxUx9nn\u0026branch=main)](https://app.travis-ci.com/nawodyaishan/react-docker-workflow)\n\n---\nThis project is a React application configured for Docker-based development and production workflows, integrated with Travis CI for continuous integration and deployment.\n\n### Getting Started\n\nClone the repository and navigate to the project directory.\n\n### Development Setup\n\n- **Running the Development Server**:\n  ```bash\n  docker-compose up my-react\n  ```\n\n- **Running Tests**:\n  ```bash\n  docker-compose up tests\n  ```\n\n### Production Build\n\n- **Building the Production Docker Image**:\n  ```bash\n  docker build -t react-docker-workflow-prod:latest -f Dockerfile .\n  ```\n\n- **Running the Production Container**:\n  ```bash\n  docker run -p 8080:80 react-docker-workflow-prod\n  ```\n\n### Travis CI Configuration\n\nThe project is configured for continuous integration with Travis CI, building and testing the Dockerized application.\n\n### Project Structure\n\n```\n.\n├── Dockerfile\n├── Dockerfile.dev\n├── README.md\n├── app.yaml\n├── docker-compose.yml\n├── index.html\n├── jest.config.ts\n├── jest.setup.ts\n├── mocks\n│   └── styleMock.ts\n├── package.json\n├── pnpm-lock.yaml\n├── public\n│   └── vite.svg\n├── src\n│   ├── App.css\n│   ├── App.tsx\n│   ├── __tests__\n│   │   ├── App.test.tsx\n│   │   └── WorkflowStage.test.tsx\n│   ├── assets\n│   │   └── react.svg\n│   ├── components\n│   │   └── WorkflowStage.tsx\n│   ├── data\n│   │   └── workflow-data.ts\n│   ├── index.css\n│   ├── main.tsx\n│   ├── types\n│   │   └── i-workflow.ts\n│   └── vite-env.d.ts\n├── tsconfig.json\n├── tsconfig.node.json\n└── vite.config.ts\n```\n\n### Vite Configuration\n\nConfigured with Vite for an optimized development experience.\n\n### Docker Compose\n\nThe `docker-compose.yml` file is set up to facilitate both development and testing environments.\n\n### Continuous Integration and Deployment\n\nTravis CI is used for continuous integration, running tests in Docker containers, and deploying to Google App Engine.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnawodyaishan%2Freact-docker-workflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnawodyaishan%2Freact-docker-workflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnawodyaishan%2Freact-docker-workflow/lists"}