{"id":27966631,"url":"https://github.com/k0msenapati/terminalfolio","last_synced_at":"2025-05-07T20:38:22.967Z","repository":{"id":224464292,"uuid":"763114537","full_name":"k0msenapati/TerminalFolio","owner":"k0msenapati","description":"TermFolio is an interactive terminal-style portfolio template that simulates a command-line interface in the browser. It's designed to showcase your projects, skills, and information in a unique and engaging way.","archived":false,"fork":false,"pushed_at":"2025-03-31T11:53:12.000Z","size":85,"stargazers_count":12,"open_issues_count":0,"forks_count":14,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T20:38:15.265Z","etag":null,"topics":["portfolio","shell"],"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/k0msenapati.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-25T15:46:03.000Z","updated_at":"2025-04-19T03:12:34.000Z","dependencies_parsed_at":"2025-05-04T04:11:34.376Z","dependency_job_id":"f5ac52ed-3f48-4495-b0d8-075fd041ce59","html_url":"https://github.com/k0msenapati/TerminalFolio","commit_stats":null,"previous_names":["kom-senapati/komportfolioshell","k0msenapati/terminalfolio"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTerminalFolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTerminalFolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTerminalFolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTerminalFolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k0msenapati","download_url":"https://codeload.github.com/k0msenapati/TerminalFolio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252954125,"owners_count":21830892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["portfolio","shell"],"created_at":"2025-05-07T20:38:22.364Z","updated_at":"2025-05-07T20:38:22.959Z","avatar_url":"https://github.com/k0msenapati.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003e\n    \u003cimg src=\"terminal_folio.png\" style=\"width: 25px; height: 25px; border-radius: 10px; vertical-align: middle;\"\u003e\n    TerminalFolio\n\u003c/h1\u003e\n\n\n\u003e **Interactive Terminal Portfolio Template**  \n\u003e Simulates a command-line interface to showcase your projects and skills uniquely.\n\n## ✨ Features  \n✅ **Interactive Terminal Interface** – Realistic command-line experience  \n✅ **Custom Commands** – Easily configurable JSON-based commands  \n✅ **Themes** – Multiple built-in themes with a switch option  \n✅ **Responsive Design** – Works on desktop \u0026 mobile  \n✅ **Social Integration** – Connect GitHub, LinkedIn, Twitter  \n\n\u003cdetails\u003e\n  \u003csummary\u003e\u003ch2\u003e💻 Commands\u003c/h2\u003e\u003c/summary\u003e\n\n### 🛠 General Commands\n- `help` – Show available commands  \n- `clear` – Clear the terminal  \n- `echo [text]` – Display text  \n- `ls` – List files  \n- `cat [file]` – Show file contents  \n- `man [command]` – Show manual  \n- `banner` – Display welcome message  \n\n### 🚀 Special Commands\n- `whois` – About you  \n- `projects` – Show your projects  \n- `contact` – Your contact info  \n- `social` – Social links  \n- `theme [name]` – Change theme  \n\n\u003c/details\u003e\n\n## ⚙️ Customization  \n\nCustomizable commands that showcase your personal information, projects, and skills:\n\n- `whois` - Display information about you\n- `whoami` - Information for the visitor\n- `projects` - Showcase your projects\n- `contact` - Display contact information\n- `social` - Show social media links\n- `joke` - Display a random programming joke\n- `theme [name]` - Change the terminal theme\n- `matrix` - Apply a matrix effect. Press Esc to exit\n- `rps [rock|paper|scissor]` - Start a round of rock-paper-scissor with the terminal\n\n## Customization\n\nTermFolio is designed to be easily customizable without editing the core code:\n\n### Configuration Files\n\nEdit the following JSON files under the `src/config` directory to modify commands, social links, and descriptions:\n\n- `user.json` - Contains user-specific information like name, bio, and contact details.\n- `config.json` - General configuration settings for the terminal interface.\n- `commands.json` - Defines the commands and their respective outputs.\n\nExample `user.json`:\n\n```json\n{\n  \"name\": \"Your Name\",\n  \"bio\": \"A short bio about yourself\",\n  \"contact\": {\n    \"email\": \"your.email@example.com\",\n    \"phone\": \"123-456-7890\"\n  }\n}\n```\n\nExample `config.json`:\n\n```json\n{\n  \"title\": \"TermFolio\",\n  \"description\": \"Interactive CLI Portfolio\",\n  \"theme\": \"default\"\n}\n```\n\nExample `commands.json`:\n\n```json\n{\n  \"specialCommands\": {\n    \"whois\": { \"output\": \"Your bio here\", \"description\": \"About you\" },\n    \"projects\": { \"output\": \"Your projects list\", \"description\": \"Show projects\" }\n  },\n  \"socials\": {\n    \"github\": \"\u003ca href='https://github.com/yourusername'\u003eGitHub\u003c/a\u003e\",\n    \"linkedin\": \"\u003ca href='https://linkedin.com/in/yourusername'\u003eLinkedIn\u003c/a\u003e\"\n  }\n}\n```\n\n---\n\n## 📂 Setup \u0026 Deployment  \n\n1. **Fork the Repository** – Click the **\"Fork\"** button at the top-right of the repo on GitHub.  \n\n2. **Clone Your Forked Repo:**  \n   ```sh\n   git clone https://github.com/your-username/TermFolio.git\n   ```\n   *(Replace `your-username` with your GitHub username.)*  \n\n3. **Customize JSON \u0026 Styles:**  \n   Modify `commands.json` \u0026 `styles.css` as needed.  \n\n4. **Deploy:**  \n   Host it on **GitHub Pages**.\n\n\n## 🛠 Technologies  \n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://skillicons.dev\"\u003e\n    \u003cimg src=\"https://skillicons.dev/icons?i=html,css,js\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n## 🤝 Contributing  \n🚀 Feel free to create issues or submit pull requests to improve TermFolio!  \n\n\u003cdiv\u003e\n   \u003ch2\u003e\u003cimg src=\"https://fonts.gstatic.com/s/e/notoemoji/latest/1f4aa/512.webp\" width=\"35\" height=\"35\" \u003eOpen Source Programs\u003c/h2\u003e\n\u003c/div\u003e\n\u003ctable border=\"1\" cellpadding=\"10\"\u003e\n    \u003ctr\u003e\n        \u003ctd rowspan=\"2\"\u003e\n            \u003cimg src=\"https://s2apertre.resourcio.in/Logo_primary.svg\" alt=\"Apertre Logo\" width=\"400\" height=\"85\"\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cstrong\u003eApertre 2.0\u003c/strong\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            This project is part of Apertre 2.0. We welcome contributions from the community.\n        \u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e\n\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eTip from us 😇\u003c/h1\u003e\n  \u003cp\u003eIt always takes time to understand and learn. So, don't worry at all. We know \u003cb\u003eyou have got this\u003c/b\u003e! 💪\u003c/p\u003e\n\u003c/div\u003e\n\n\u003cdiv\u003e\n  \u003ch2\u003e\u003cimg src=\"https://fonts.gstatic.com/s/e/notoemoji/latest/2764_fe0f/512.webp\" width=\"35\" height=\"35\"\u003e Show Your Support\u003c/h2\u003e\n\u003c/div\u003e\n\nIf you find this project interesting and inspiring, please consider showing your support by starring it on GitHub! Your star goes a long way in helping us to reach more developers and encourages to keep enhancing the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk0msenapati%2Fterminalfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk0msenapati%2Fterminalfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk0msenapati%2Fterminalfolio/lists"}