{"id":50213573,"url":"https://github.com/abduznik/portfolio-dumper","last_synced_at":"2026-05-26T07:03:09.994Z","repository":{"id":358507236,"uuid":"1241647818","full_name":"abduznik/portfolio-dumper","owner":"abduznik","description":"Convert GitHub profiles and repositories into clean, LLM-friendly Markdown. Features profile README ingestion, repository lists, and PAT support. Completely static and secure.","archived":false,"fork":false,"pushed_at":"2026-05-17T17:12:55.000Z","size":254,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-17T19:36:35.885Z","etag":null,"topics":["ai","developer-tools","documentation-generator","github","github-api","gitingest-alternative","ingestion","llm","markdown","portfolio","prompt-engineering","repository-scanner","static-site"],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/abduznik.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-17T16:41:47.000Z","updated_at":"2026-05-17T19:16:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/abduznik/portfolio-dumper","commit_stats":null,"previous_names":["abduznik/portfolio-dumper"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/abduznik/portfolio-dumper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abduznik%2Fportfolio-dumper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abduznik%2Fportfolio-dumper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abduznik%2Fportfolio-dumper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abduznik%2Fportfolio-dumper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abduznik","download_url":"https://codeload.github.com/abduznik/portfolio-dumper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abduznik%2Fportfolio-dumper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33508318,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T03:12:49.672Z","status":"ssl_error","status_checked_at":"2026-05-26T03:12:47.976Z","response_time":63,"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":["ai","developer-tools","documentation-generator","github","github-api","gitingest-alternative","ingestion","llm","markdown","portfolio","prompt-engineering","repository-scanner","static-site"],"created_at":"2026-05-26T07:03:08.981Z","updated_at":"2026-05-26T07:03:09.978Z","avatar_url":"https://github.com/abduznik.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Portfolio Dumper\n\n![Portfolio Dumper Demo](assets/demo.png)\n\nPortfolio Dumper is a minimalist static web application designed to convert GitHub profiles and repositories into clean, LLM-friendly Markdown. It allows users to quickly ingest profile READMEs, repository lists, or specific repository metadata for use in documentation, portfolios, or AI prompts.\n\n## Features\n\n- Profile Ingestion: Fetch a user profile README and their list of original repositories.\n- Targeted Repository Ingestion: Paste a specific repository URL to fetch its README and metadata directly.\n- Flexible Ingestion Modes: Choose between fetching only the README, only the repositories, or both.\n- Intelligent Input Parsing: Support for raw usernames, profile URLs, and deep repository links.\n- Personal Access Token Support: Option to use a GitHub PAT for higher rate limits and access to private data.\n- Statistics Overview: Real-time calculation of repository counts, star counts, forks, and language diversity.\n- Export Options: Easy copying to clipboard or downloading as a Markdown file.\n- Static and Secure: Runs entirely in the browser using the GitHub REST API.\n\n## Usage\n\n1. Open the application in your browser.\n2. Enter a GitHub username or any GitHub URL in the input field.\n3. Select your desired ingestion mode (Everything, Only README, or Only Repos).\n4. (Optional) Provide a GitHub Personal Access Token in the settings panel to avoid rate limits.\n5. Click Ingest to generate the Markdown.\n6. Use the Copy or Download buttons to export your result.\n\n## Self-Hosting\n\n### Using Nginx Directly\n\nSince this is a static site, you can serve the index.html file and the assets folder using any web server like Nginx, Apache, or even Python's http.server.\n\n### Using Docker\n\nA pre-built Docker image is available via GitHub Packages (GHCR).\n\n#### Run with Docker\n\nTo run the latest version directly:\n\n```bash\ndocker run -d -p 8080:80 ghcr.io/abduznik/portfolio-dumper:latest\n```\n\n#### Using Docker Compose\n\nCreate a `docker-compose.yml` file with the following content:\n\n```yaml\nservices:\n  app:\n    image: ghcr.io/abduznik/portfolio-dumper:latest\n    ports:\n      - \"8080:80\"\n    restart: unless-stopped\n```\n\nThen start the application:\n\n```bash\ndocker-compose up -d\n```\n\nThe application will be available at http://localhost:8080.\n\n## Technical Details\n\n- Frontend: Tailwind CSS via CDN.\n- API: GitHub REST API v3.\n- Logic: Vanilla JavaScript for all fetching and processing.\n- Security: No server-side processing. All tokens are used only within your local browser context.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabduznik%2Fportfolio-dumper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabduznik%2Fportfolio-dumper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabduznik%2Fportfolio-dumper/lists"}