{"id":26973984,"url":"https://github.com/techtronixx/tic-tac-toe-devops","last_synced_at":"2026-02-27T18:02:02.134Z","repository":{"id":281342263,"uuid":"944988905","full_name":"TechTronixx/tic-tac-toe-DevOps","owner":"TechTronixx","description":" A DevSecOps Project Implementation on a demo tiktactoe application. ","archived":false,"fork":false,"pushed_at":"2025-03-09T11:56:16.000Z","size":113,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-29T00:45:02.244Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/TechTronixx.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-08T11:52:43.000Z","updated_at":"2025-03-09T11:56:20.000Z","dependencies_parsed_at":"2025-07-29T00:34:31.922Z","dependency_job_id":"dd3b4a11-bf30-41b9-8fda-f751b6b3a8fe","html_url":"https://github.com/TechTronixx/tic-tac-toe-DevOps","commit_stats":null,"previous_names":["techtronixx/tic-tac-toe_devops"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TechTronixx/tic-tac-toe-DevOps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechTronixx%2Ftic-tac-toe-DevOps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechTronixx%2Ftic-tac-toe-DevOps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechTronixx%2Ftic-tac-toe-DevOps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechTronixx%2Ftic-tac-toe-DevOps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TechTronixx","download_url":"https://codeload.github.com/TechTronixx/tic-tac-toe-DevOps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechTronixx%2Ftic-tac-toe-DevOps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29907346,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T17:28:36.873Z","status":"ssl_error","status_checked_at":"2026-02-27T17:28:20.970Z","response_time":57,"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":[],"created_at":"2025-04-03T10:19:58.316Z","updated_at":"2026-02-27T18:02:02.119Z","avatar_url":"https://github.com/TechTronixx.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%2Ftechtronixx%2Ftic-tac-toe-devops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechtronixx%2Ftic-tac-toe-devops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechtronixx%2Ftic-tac-toe-devops/lists"}