{"id":23176773,"url":"https://github.com/ryanlarge13/sketch-it","last_synced_at":"2026-05-17T04:44:24.731Z","repository":{"id":253590565,"uuid":"843605745","full_name":"RyanLarge13/Sketch-It","owner":"RyanLarge13","description":"A learn to draw native desktop app gtkmm framework ","archived":false,"fork":false,"pushed_at":"2025-03-23T04:25:59.000Z","size":13032,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-02T09:44:09.940Z","etag":null,"topics":["drawing","gtkmm4","gui","learning","opengl"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RyanLarge13.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-08-16T22:36:37.000Z","updated_at":"2025-03-23T04:26:03.000Z","dependencies_parsed_at":"2024-10-23T18:26:35.431Z","dependency_job_id":"5d132953-b33f-4d00-a63f-3deb753a659c","html_url":"https://github.com/RyanLarge13/Sketch-It","commit_stats":null,"previous_names":["ryanlarge13/sketch-it"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RyanLarge13/Sketch-It","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyanLarge13%2FSketch-It","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyanLarge13%2FSketch-It/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyanLarge13%2FSketch-It/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyanLarge13%2FSketch-It/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RyanLarge13","download_url":"https://codeload.github.com/RyanLarge13/Sketch-It/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyanLarge13%2FSketch-It/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33127798,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"online","status_checked_at":"2026-05-17T02:00:05.366Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["drawing","gtkmm4","gui","learning","opengl"],"created_at":"2024-12-18T06:19:32.473Z","updated_at":"2026-05-17T04:44:24.713Z","avatar_url":"https://github.com/RyanLarge13.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sketch-It\n\n## Table of contents\n\n- [Build the app](#build-the-application)\n- [Contributions](#contributing)\n- [Licensing](#licensing)\n\n## Build the application\n\n1. Clone the repo\n\n```\n$ git clone https://github.com/RyanLarge13/Sketch-It\n```\n\n2. Install dependencies\n   You must have gtkmm, openGL and nlohmann-json3 installed to build the program\n\n   **These are commands for Debian based systems**\n\n   **Learn how to install these libraries for your own system**\n\n   [gtkmm \u003e= 4.0](https://gtkmm.org/en/download.html)\n\n   [nlohmann-json3](https://json.nlohmann.me/integration/package_managers/)\n\n   [openGL](https://www.opengl.org/)\n\n```\n$ sudo apt update\n$ sudo apt upgrade\n$ sudo apt install libgtkmm-4.0-dev\n$ sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev\n```\n\nnlomann-json is included as a .hpp file under src/lib for the application. Optionally you can use the link above to\ninstall it locally and add it to CMake. Check it out form the link above\n\n```\n$ cd includes/ \u0026\u0026 wget https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp\n```\n\n### Installing OpenGL on Ubuntu\n\n```\nglxinfo | grep \"OpenGL\"\n```\n\nIf glxinfo is not installed, install it with\n\n```\nsudo apt update\nsudo apt install mesa-utils\n```\n\nInstall the missing libraries\n\n```\nsudo apt update\nsudo apt install libgl1-mesa-dev\n```\n\nInstall additional deps\n\n```\nsudo apt install libglu1-mesa-dev freeglut3-dev\n```\n\n3. Run with CMake\n\n```\n$ cd build/\n$ cmake ..\n$ make\n$ ./sketch-it\n```\n\n## Contributing\n\n**Clone the repository**\n\n1. Fork the repository.\n2. Create your feature branch (`git checkout -b feature/my-feature`).\n3. Commit your changes (`git commit -m 'Add new feature'`).\n4. Push to the branch (`git push origin feature/my-feature`).\n5. Open a Pull Request.\n\nPlease make sure to install clang-format on your machine if you are contributing\nto help keep your pull requests and this code base consistent and maintainable\n\n```\nbash\n\n$ sudo apt update\n$ sudo apt upgrade\n$ sudo apt install clang-format\n```\n\n## Licensing\n\nThis projects is licensed under the GNU 4.0 license. See the licensing here [GNU 4.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanlarge13%2Fsketch-it","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryanlarge13%2Fsketch-it","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanlarge13%2Fsketch-it/lists"}