{"id":37179979,"url":"https://github.com/gooddavvy/markdown-repository-snapshot-app","last_synced_at":"2026-01-14T20:56:04.102Z","repository":{"id":240235149,"uuid":"802060044","full_name":"gooddavvy/markdown-repository-snapshot-app","owner":"gooddavvy","description":"An app that you input a GitHub repository's URL into, alongside ignore files\u0026folders, and it outputs a downloadable `output.md` file","archived":false,"fork":false,"pushed_at":"2024-05-26T16:05:18.000Z","size":31,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-30T16:30:09.862Z","etag":null,"topics":["github","github-repositories","github-repository","markdown","snapshot","snapshots"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gooddavvy.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}},"created_at":"2024-05-17T12:50:32.000Z","updated_at":"2024-06-05T23:05:28.038Z","dependencies_parsed_at":"2024-06-05T23:15:45.658Z","dependency_job_id":null,"html_url":"https://github.com/gooddavvy/markdown-repository-snapshot-app","commit_stats":null,"previous_names":["gooddavvy/markdown-repository-snapshot-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gooddavvy/markdown-repository-snapshot-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gooddavvy%2Fmarkdown-repository-snapshot-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gooddavvy%2Fmarkdown-repository-snapshot-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gooddavvy%2Fmarkdown-repository-snapshot-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gooddavvy%2Fmarkdown-repository-snapshot-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gooddavvy","download_url":"https://codeload.github.com/gooddavvy/markdown-repository-snapshot-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gooddavvy%2Fmarkdown-repository-snapshot-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["github","github-repositories","github-repository","markdown","snapshot","snapshots"],"created_at":"2026-01-14T20:56:03.408Z","updated_at":"2026-01-14T20:56:04.098Z","avatar_url":"https://github.com/gooddavvy.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e **Note: This project will soon deprecate the use of Python, and will only use GoLang. In short words, it will soon only use Go.**\n\n# markdown-repository-snapshot-app\n\nHi and welcome to `markdown-repository-snapshot-app`! 👋👋👋👋👋\n\n## Description \u0026 Details\n\nThis is a lightning-fast application that you input a GitHub repository's URL into, alongside ignore files\u0026folders, and it outputs a downloadable `output.md` file, which contains a snapshot of the non-excluded, non-ignored files. (And when I say \"snapshot\", I mean the names of files alongside their contents in a code block.) Here are the latest updates:\n\n- As of **May 19, 2024**, you do not need a GitHub API key in order to use the application (even though it still requires an internet connection).\n- As of **June 5, 2024**, you can now optionally provide the name of a specific directory in the repository that you'd like to take a snapshot of.\n\n**Feels like magic!**\n\nRelease Date: May 17, 2024\n\nPhase: Completed (sort of)\n\n**Need to work on:**\n\n- [x] Making it work via GitHub API and GitHub API token\n- [x] Doing it via getting and unzipping zip file for repository (**the magical part**)\n- [x] Allowing users to take a snapshot of a specific directory in the repository\n- [ ] Allowing users to take a snapshot of a specific branch in the repository\n\n**Feel free to look at the code--the app is all open-source!**\n\n**Just a heads up:** If you don't feel like running it, why don't you look at the image below? It really works! And it's really, _really_ fast! (**Trust me**, as long as your computer is functioning properly, you can generate the snapshot in a maximum of only 4 seconds, no matter how big the repository is.)\n\n![markdown-repo-snapApp_example](images/markdown-repo-snapApp_example2.png)\n\n# How to use\n\n## Setting it up\n\n1. First, ensure you have installed [GoLang](https://go.dev/dl/) and [Python](https://python.org/downloads/).\n2. After this, you can open your terminal, navigate to the desired directory, and run:\n\n```sh\ngit clone https://github.com/gooddavvy/markdown-repository-snapshot-app.git\ncd markdown-repository-snapshot-app\ncode .\n```\n\n## Running it\n\nThen, open a VS-Code terminal in the workspace, and run:\n\n```sh\ncd backend\ngo mod tidy\ngo run main.go\n```\n\nAfter that, open another one, and run:\n\n```sh\ncd frontend\npip install -r requirements.txt\npython app.py\n```\n\nIf everything works as expected, it should automatically open `http://localhost:8501` in your default browser.\n\n# Other Things to Say\n\n**Contributions** are welcome! If you find any issues or have suggestions for improvements, please create a [new issue](https://github.com/gooddavvy/markdown-repository-snapshot-app/issues/new) or submit a [pull request](https://github.com/gooddavvy/markdown-repository-snapshot-app/pulls).\n\n**Stars!** Also, if you like and/or support this project, please [star it](https://github.com/gooddavvy/markdown-repository-snapshot-app)! Thank you so much!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgooddavvy%2Fmarkdown-repository-snapshot-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgooddavvy%2Fmarkdown-repository-snapshot-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgooddavvy%2Fmarkdown-repository-snapshot-app/lists"}