{"id":27931346,"url":"https://github.com/ashish-panicker/johnsmith-portfolio","last_synced_at":"2026-04-08T16:03:10.062Z","repository":{"id":291703144,"uuid":"978494764","full_name":"ashish-panicker/johnsmith-portfolio","owner":"ashish-panicker","description":"This is a responsive, animated, and theme-aware personal portfolio website. The purpose of this is to practice react deployment locally and in AWS cloud.","archived":false,"fork":false,"pushed_at":"2025-05-06T04:55:35.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-07T03:15:00.347Z","etag":null,"topics":["aws","docker","javascri","nginx","reactjs","tailwind"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ashish-panicker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-05-06T04:34:43.000Z","updated_at":"2025-05-06T04:58:28.000Z","dependencies_parsed_at":"2025-05-06T05:39:59.325Z","dependency_job_id":null,"html_url":"https://github.com/ashish-panicker/johnsmith-portfolio","commit_stats":null,"previous_names":["ashish-panicker/johnsmith-portfolio"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ashish-panicker/johnsmith-portfolio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish-panicker%2Fjohnsmith-portfolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish-panicker%2Fjohnsmith-portfolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish-panicker%2Fjohnsmith-portfolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish-panicker%2Fjohnsmith-portfolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ashish-panicker","download_url":"https://codeload.github.com/ashish-panicker/johnsmith-portfolio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish-panicker%2Fjohnsmith-portfolio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31562697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"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":["aws","docker","javascri","nginx","reactjs","tailwind"],"created_at":"2025-05-07T03:14:57.770Z","updated_at":"2026-04-08T16:03:10.055Z","avatar_url":"https://github.com/ashish-panicker.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# John Smith's Portfolio Website\n\nThis is a responsive, animated, and theme-aware personal portfolio website built for **John Smith**, a Senior Software Engineer and veteran game developer. It is developed using **React**, **Vite**, **TailwindCSS**, and **Framer Motion**. The project is containerized using **Docker** for easy deployment.\n\n---\n\n## 🌟 Features\n\n- 🧠 About Me section\n- 🎮 Projects with visuals and descriptions\n- ⚙️ Skills \u0026 Tech Stack\n- 💼 Experience \u0026 Resume (PDF Download)\n- ✉️ Contact form (with validation)\n- 🌗 Dark / Light theme toggle\n- 📱 Responsive design with mobile hamburger menu\n- 🧭 Sticky navigation with Framer Motion animation\n- 🐳 Dockerized for deployment\n\n---\n\n## 🛠 Tech Stack\n\n- **Frontend**: React + Vite\n- **Styling**: TailwindCSS\n- **Animation**: Framer Motion\n- **Icons**: Lucide React\n- **Containerization**: Docker + NGINX\n\n---\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js (v18+)\n- npm or yarn\n- Docker (for containerization)\n\n### Development\n\n```bash\ngit clone https://github.com/ashish-panicker/johnsmith-portfolio.git\ncd johnsmith-portfolio\nnpm install\nnpm run dev\n```\n\n### Build for Production\n\n```bash\nnpm run build\n```\n\n---\n\n## Local Deployment\n\n### Steps\n\n- Download [Nginx Server](https://nginx.org/en/download.html)\n- Extract the zip file to `C:\\`\n- Build the react project `npm run build`\n- Copy the `dist` folder into `nginx-\u003cversion\u003e\\html\\portfolio` folder in the server\n- Edit the `nginx-\u003cversion\u003e\\conf\\nginx.conf` file\n\n```\n  http {\n    # other configurations\n    server {\n      location / {\n            root   html/portfolio/dist;\n            index  index.html index.htm;\n        }\n    }\n  }\n```\n\n- Start `nginx-\u003cversion\u003e.exe`\n- Browse to `http://localhost` and verify the app is deployed\n\n---\n\n## 🐳 Docker Setup\n\n### Build Docker Image\n\n```bash\ndocker build -t johnsmith-portfolio .\n```\n\n### Run Docker Container\n\n```bash\ndocker run -d -p 3000:80 johnsmith-portfolio\n```\n\nOpen your browser at [http://localhost:3000](http://localhost:3000)\n\n---\n\n## Cloud Deployment\n\n### 🚀 AWS DevOps Toolchain Summary\n\nA quick overview of key AWS tools used in a CI/CD pipeline:\n\n| Tool | Purpose | Key Features |\n| --- | --- | --- |\n| **CodeCommit** | Fully managed Git-based source control | Secure and scalable, IAM integration, Git hooks |\n| **CodeArtifact** | Managed artifact repository for software packages (npm, Maven, etc.) | Supports multiple formats, dependency sharing, and access control |\n| **CodeBuild** | Builds, tests, and packages source code | On-demand scaling, Docker support, environment variables |\n| **CodeDeploy** | Automates deployments to EC2, Lambda, and on-prem servers | Blue/green deployments, canary updates, lifecycle hooks |\n| **CodePipeline** | Orchestrates the entire CI/CD workflow | Integrates with CodeCommit, CodeBuild, CodeDeploy, and third-party tools |\n\n### 🔄 Typical Workflow\n\n- **CodeCommit** stores your source code.\n- **CodeBuild** compiles and builds artifacts.\n- **CodeArtifact** (optional) manages shared packages and dependencies.\n- **CodeDeploy** deploys your app to various targets.\n- **CodePipeline** connects and automates the end-to-end workflow.\n\n---\n\n## 📁 Project Structure\n\n```\nsrc/\n  components/       # Navbar, ThemeToggle, Sections...\n  context/          # Theme Context\n  data/             # Sample Data\n  assets/           # Images, Resume PDF\n  App.jsx           # Main app component\n  main.jsx          # ReactDOM entry\npublic/             # Static files\nDockerfile          # Docker build config\nvite.config.js      # Vite bundler config\n```\n\n---\n\n## 📄 License\n\nMIT License. Free to use and modify.\n\n---\n\n## 🙌 Acknowledgements\n\nThanks to open-source contributors of React, Vite, TailwindCSS, Framer Motion, and Lucide for making this project possible.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashish-panicker%2Fjohnsmith-portfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashish-panicker%2Fjohnsmith-portfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashish-panicker%2Fjohnsmith-portfolio/lists"}