{"id":15047399,"url":"https://github.com/gbowne1/gradebook-management-system","last_synced_at":"2025-10-07T20:20:01.746Z","repository":{"id":220092411,"uuid":"750699924","full_name":"gbowne1/gradebook-management-system","owner":"gbowne1","description":"This is a C++ Gradebook Management System","archived":false,"fork":false,"pushed_at":"2025-04-05T12:28:01.000Z","size":136,"stargazers_count":2,"open_issues_count":10,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T10:41:51.695Z","etag":null,"topics":["classroom-management","cpp","cpp11","education","educational-institutions","educational-technology","grade","grade-management","gradebook","grades","k-12","k-12-education","k12","school","teacher"],"latest_commit_sha":null,"homepage":"","language":"C++","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/gbowne1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-31T06:22:00.000Z","updated_at":"2025-04-14T20:31:17.000Z","dependencies_parsed_at":"2024-02-29T00:29:10.516Z","dependency_job_id":"6d8d980e-d22c-4e02-9fe8-16e1e811988d","html_url":"https://github.com/gbowne1/gradebook-management-system","commit_stats":null,"previous_names":["gbowne1/gradebook-management-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gbowne1/gradebook-management-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbowne1%2Fgradebook-management-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbowne1%2Fgradebook-management-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbowne1%2Fgradebook-management-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbowne1%2Fgradebook-management-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gbowne1","download_url":"https://codeload.github.com/gbowne1/gradebook-management-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbowne1%2Fgradebook-management-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278838826,"owners_count":26054803,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["classroom-management","cpp","cpp11","education","educational-institutions","educational-technology","grade","grade-management","gradebook","grades","k-12","k-12-education","k12","school","teacher"],"created_at":"2024-09-24T20:57:45.217Z","updated_at":"2025-10-07T20:20:01.716Z","avatar_url":"https://github.com/gbowne1.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gradebook Management System\n\nThis is a C++ Gradebook Management System for the Kindergarten and 1st through 12th Grades.\n\n[![C++](https://img.shields.io/badge/C++-00599C?logo=C%2B%2B\u0026logoColor=white\u0026style=flat-square)](https://en.cppreference.com/)\n\n## Features\n\n- Load students, teachers, assignments, classes and grades from CSV files\n- View and modify loaded data\n- Save students and grades to CSV files\n\n## Getting Started\n\nThis step describes the prerequisites and install steps for the libraries needed to build and run the project.\n\n### Prerequisites\n\n- [CMake](https://cmake.org/) - v3.14+\n- C++ Compiler - C++ 14+ - Currently tested with [g++](https://gcc.gnu.org/) only\n- [Google Test](https://github.com/google/googletest) - Only needed for linting, as CMake fetches Google Test automatically during build\n- Operating system - Currently the following operating systems are supported: [Ubuntu](https://ubuntu.com/download) and [Debian](https://www.debian.org/index.en.html)\n\n### Installing\n\nCurrently, there are no install steps that are strictly necessary. However, if you wish to include Google Test in your local library, you may do so by following these steps:\n\n```sh\ngit clone https://github.com/google/googletest.git\ncd googletest\ncmake -B build .\ncd build\ncmake --build .\ncmake --install .\n```\n\n## Building the project\n\nThis project is built using CMake and Make. Here is an example on how to build the project:\n\n```sh\ncmake -B build .\ncd build\nmake\n```\n\nAnd then run the executable:\n\n```sh\ncd gradebook\n./gradebook\n```\n\n## Generating the documentation\n\nThe documentation can be generated with Doxygen in the HTML and LaTeX formats. In order to do so, you must first install Doxygen and Graphviz:\n```sh\n# Ubuntu 22.04\nsudo apt-add-repository universe\nsudo apt-get update\nsudo apt-get install doxygen\nsudo apt-get install graphviz\n```\n\nThen run Doxygen:\n```sh\ndoxygen doxygen.conf\n```\n\nTwo folders named `html` and `latex` should appear.\n\n## Running the tests\n\nThis project uses [Google Test](https://github.com/google/googletest) for unit testing. In order to run unit tests, the flag `-DTESTING=ON` must be passed to the CMake command. Here is an example on how to build and run tests:\n\n```sh\n# Build with CMake and Make\ncmake -DTESTING=ON -B build .\ncd build\nmake\n# Run tests\ncd tests\n./gradebook_test [--gtest_filter=...]\n```\n\n## Contributing\n\nPlease see the [Contributing](.github/CONTRIBUTING.md) file for more information.\n\n## Versioning\n\nVersioning is not available for this project yet.\n\n## Authors\n\n- Gregory Bowne - [@gbowne1](https://github.com/gbowne1)\n\n## License\n\nThis project is licensed under the [MIT License](https://opensource.org/license/mit) - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgbowne1%2Fgradebook-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgbowne1%2Fgradebook-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgbowne1%2Fgradebook-management-system/lists"}