{"id":13305866,"url":"https://github.com/correctexam/corrigeExamBack","last_synced_at":"2025-03-10T14:32:19.293Z","repository":{"id":37703588,"uuid":"468035473","full_name":"correctexam/corrigeExamBack","owner":"correctexam","description":"Web app to grade your assessments anywhere","archived":false,"fork":false,"pushed_at":"2025-03-06T09:55:31.000Z","size":31210,"stargazers_count":10,"open_issues_count":5,"forks_count":7,"subscribers_count":2,"default_branch":"deploy","last_synced_at":"2025-03-06T10:37:38.388Z","etag":null,"topics":["docker","grade","gradescope","java"],"latest_commit_sha":null,"homepage":"https://correctexam.github.io/","language":"Java","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/correctexam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2022-03-09T17:51:47.000Z","updated_at":"2025-02-28T09:17:51.000Z","dependencies_parsed_at":"2024-01-09T16:04:12.262Z","dependency_job_id":"44a4615f-3395-4dc1-8d49-fcd64ff57172","html_url":"https://github.com/correctexam/corrigeExamBack","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/correctexam%2FcorrigeExamBack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/correctexam%2FcorrigeExamBack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/correctexam%2FcorrigeExamBack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/correctexam%2FcorrigeExamBack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/correctexam","download_url":"https://codeload.github.com/correctexam/corrigeExamBack/tar.gz/refs/heads/deploy","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242868501,"owners_count":20198495,"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":["docker","grade","gradescope","java"],"created_at":"2024-07-29T17:54:36.891Z","updated_at":"2025-03-10T14:32:19.272Z","avatar_url":"https://github.com/correctexam.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CorrectExam back-end\n\nThe back-end of the app CorrectExam.\n\n## CorrectExam\n\n**Deliver and Grade Your Assessments Anywhere**\n\nThis application helps you seamlessly administer and grade all of your in-class assessments (long exam or short). Save time grading and get a clear picture of how your students are doing. Provide a clear feedback to your students.\n\n### Feature\n\nMain feature are:\n\n- automatically align your scan\n- automatically recognize your student name and firstname on sheet\n- identify zones for question to support horizontal or vertical correction\n- create generic comment per question with associated bonus or malus to efficiently correct each question\n- use your tablet and your pen to annotate student sheet\n- provide clear feedback to your students\n\n### Technical stack\n\n\nThis application was generated using JHipster 6.10.5 and JHipster Quarkus 1.1.1 (manually upgraded to quarkus 2.9.2.Final), you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v6.10.5](https://www.jhipster.tech/documentation-archive/v6.10.5).\n\n\n### Build and deploy\n\nDocumentation to deploy your own instance is available [here](https://correctexam.readthedocs.io/en/latest/Install.html)\n\n\n\n## Development\n\n### Install\n\nThe back-end requires Minio to store the PDF files.\nAn easy way to install and launch Minio on your computer is to use an official Docker image:\n\n```\npodman run -p 9000:9000 -d -p 9090:9090 -e \"MINIO_ROOT_USER=admin\" -e \"MINIO_ROOT_PASSWORD=minioadmin\" -v /media/data/miniofiles:/data:Z quay.io/minio/minio server /data --console-address \":9090\"\n```\n\nThe back-end also requires a database.\nOn Linux you can install MariaDB.\nOn Fedora, you can run:\n\n```\nsudo dnf install mariadb-server\nsudo systemctl enable mariadb\nsudo systemctl start mariadb\nsudo mysql_secure_installation\n\nsudo mysql -u root\nCREATE DATABASE gradeScopeIstic;\n```\n\nThe first run of the back-end must initial and populate the DB with fake data. To do so, run:\n```\n./mvnw quarkus:dev -Dquarkus.liquibase.migrate-at-start=true\n```\n\nIt creates two users `user:user` and `admin:admin`.\nAfter that you can launch the back-end classically `./mvnw`\n\n\n### Run in development mode\n\nTo start your application in the dev profile, run:\n\n```\n./mvnw\n```\n\nFor further instructions on how to develop with JHipster, have a look at [Using JHipster in development][].\n\n### Building for production\n\n#### Packaging as thin jar\n\nTo build the final jar and optimize the correctExam application for production, run:\n\n```\n./mvnw -Pprod clean package\n```\n\nTo ensure everything worked, run:\n\n    java -jar target/quarkus-app/*.jar\n\nRefer to [Using JHipster in production][] for more details.\n\n#### Packaging as native executable\n\n_Targeting your Operation System_\nIn order to build a native image locally, your need to have [GraalVM](https://www.graalvm.org/) installed and `GRAALVM_HOME` defined.\nYou can use the `native` profile as follow to build native executable.\n\n```\n./mvnw package -Pnative\n```\n\nKeep in mind that the generated native executable is dependent on your Operating System.\n\n_Targeting a container environment_\nIf you plan to run your application in a container, run:\n\n```\n./mvnw package -Dnative -Dquarkus.native.container-build=true\n```\n\nIt will use a Docker container with GraalVM installed and produce an 64 bit Linux executable.\n\n### Testing\n\nTo launch your application's tests, run:\n\n    ./mvnw verify\n\nFor more information, refer to the [Running tests page][].\n\n### Using Docker to simplify development (optional)\n\nYou can use Docker to improve your JHipster development experience. A number of docker-compose configuration are available in the [src/main/docker](src/main/docker) folder to launch required third party services.\n\nFor example, to start a mysql database in a docker container, run:\n\n    docker-compose -f src/main/docker/mysql.yml up -d\n\nTo stop it and remove the container, run:\n\n    docker-compose -f src/main/docker/mysql.yml down\n\n[jhipster homepage and latest documentation]: https://www.jhipster.tech\n[jhipster 6.10.5 archive]: https://www.jhipster.tech/documentation-archive/v6.10.5\n[using jhipster in development]: https://www.jhipster.tech/documentation-archive/v6.10.5/development/\n[using docker and docker-compose]: https://www.jhipster.tech/documentation-archive/v6.10.5/docker-compose\n[using jhipster in production]: https://www.jhipster.tech/documentation-archive/v6.10.5/production/\n[running tests page]: https://www.jhipster.tech/documentation-archive/v6.10.5/running-tests/\n[code quality page]: https://www.jhipster.tech/documentation-archive/v6.10.5/code-quality/\n[setting up continuous integration]: https://www.jhipster.tech/documentation-archive/v6.10.5/setting-up-ci/\n\n\n\n-- upgrade database script\n\n\ncreate table prediction (id bigint not null auto_increment, json_data tinytext, confidence float(53), question_number varchar(255), text varchar(2048), question_id bigint, sheet_id bigint, primary key (id));\nalter table template add column casename bit DEFAULT 1;\nalter table course add column archived bit not null DEFAULT 0;\n\n\nalter table prediction add constraint FK1xsmwx00gk7213kwfeah9lcjx foreign key (question_id) references question (id);\nalter table prediction add constraint FK8nv2hkm3mhxll6be9mwj5402t foreign key (sheet_id) references exam_sheet (id);\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorrectexam%2FcorrigeExamBack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorrectexam%2FcorrigeExamBack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorrectexam%2FcorrigeExamBack/lists"}