{"id":26053332,"url":"https://github.com/asishkumar-gouda/devsecops-app-cicd","last_synced_at":"2026-04-13T18:01:56.830Z","repository":{"id":281177358,"uuid":"944284019","full_name":"asishkumar-gouda/devsecops-app-cicd","owner":"asishkumar-gouda","description":"This project is to implement DevSecOps practices to a Typescript application. CI/CD using GithubActions and ArgoCD with K8s. GHCR as Container Registry.","archived":false,"fork":false,"pushed_at":"2025-03-07T14:59:02.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-25T21:52:17.032Z","etag":null,"topics":["argocd","devsecops","docker","ghcr","github-actions","source-code-analysis","unit-testing"],"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/asishkumar-gouda.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-03-07T04:52:01.000Z","updated_at":"2025-03-07T14:59:05.000Z","dependencies_parsed_at":"2025-07-25T16:37:06.645Z","dependency_job_id":"6fb8a1d1-cb23-4a26-9f5c-1d087967fcb6","html_url":"https://github.com/asishkumar-gouda/devsecops-app-cicd","commit_stats":null,"previous_names":["asishgouda/devsecops-app-cicd","asishkumar-gouda/devsecops-app-cicd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/asishkumar-gouda/devsecops-app-cicd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asishkumar-gouda%2Fdevsecops-app-cicd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asishkumar-gouda%2Fdevsecops-app-cicd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asishkumar-gouda%2Fdevsecops-app-cicd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asishkumar-gouda%2Fdevsecops-app-cicd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asishkumar-gouda","download_url":"https://codeload.github.com/asishkumar-gouda/devsecops-app-cicd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asishkumar-gouda%2Fdevsecops-app-cicd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31764317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: 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":["argocd","devsecops","docker","ghcr","github-actions","source-code-analysis","unit-testing"],"created_at":"2025-03-08T07:28:00.744Z","updated_at":"2026-04-13T18:01:56.809Z","avatar_url":"https://github.com/asishkumar-gouda.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevSecOps Pipeline Implementation for Tic Tac Toe Game\n\n![Screenshot 2025-03-04 at 7 16 48 PM](https://github.com/user-attachments/assets/7ed79f9c-9144-4870-accd-500085a15592)\n\n![image](https://github.com/user-attachments/assets/5b2813a5-f493-4665-8964-77359b5be93a)\n\n## Features\n\n- 🎮 Fully functional Tic Tac Toe game\n- 📊 Score tracking for X, O, and draws\n- 📜 Game history with timestamps\n- 🏆 Highlights winning combinations\n- 🔄 Reset game and statistics\n- 📱 Responsive design for all devices\n\n## Technologies Used\n\n- React 18\n- TypeScript\n- Tailwind CSS\n- Lucide React for icons\n\n## Project Structure\n\n```\nsrc/\n├── components/\n│   ├── Board.tsx       # Game board component\n│   ├── Square.tsx      # Individual square component\n│   ├── ScoreBoard.tsx  # Score tracking component\n│   └── GameHistory.tsx # Game history component\n├── utils/\n│   └── gameLogic.ts    # Game logic utilities\n├── App.tsx             # Main application component\n└── main.tsx           # Entry point\n```\n\n## Game Logic\n\nThe game implements the following rules:\n\n1. X goes first, followed by O\n2. The first player to get 3 of their marks in a row (horizontally, vertically, or diagonally) wins\n3. If all 9 squares are filled and no player has 3 marks in a row, the game is a draw\n4. Winning combinations are highlighted\n5. Game statistics are tracked and displayed\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (v14 or higher)\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/devsecops-demo.git\n   cd devsecops-demo\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   # or\n   yarn\n   ```\n\n3. Start the development server:\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n4. Open your browser and navigate to `http://localhost:5173`\n\n## Building for Production\n\nTo create a production build:\n\n```bash\nnpm run build\n# or\nyarn build\n```\n\nThe build artifacts will be stored in the `dist/` directory.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasishkumar-gouda%2Fdevsecops-app-cicd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasishkumar-gouda%2Fdevsecops-app-cicd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasishkumar-gouda%2Fdevsecops-app-cicd/lists"}