category | title | redirect_from | |
---|---|---|---|
Instructor > Assignment Preparation |
Upload Gradeable |
|
To create a gradeable by uploading a JSON file, click the "Upload Gradeable Json" file in the top right.
Upload and submit the JSON file to the popup window. If the JSON file contains all of the correct information, you will be redirected to the gradeable edit screen.
- title -- Gradeable title
- type -- "Checkpoints", "Numeric", or "Electronic File"
- id -- Gradeable ID (Must be unique)
VCS
- repository_type -- "submitty-hosted", "submitty-hosted-url", "public-github", "self-hosted", "private-github" (Required)
- vcs_path -- Path to VCS repositories (Can be URL, Required)
- vcs_subdirectory -- Path to files within the repository (Optional, leave out if not using subdirectories)
"vcs": {
"repository_type": "submitty-hosted",
"vcs_path": "http://localhost:1511/path/to/repository",
"vcs_subdirectory": "subdirectory"
}
Other Electronic Types
- bulk_upload -- If the TA will bilk upload assignments online (Default false)
- normal -- Do not include bulk_upload or vcs to have a normal student upload gradeable.
- team_size_max: Maximum team size
- inherit_from: Gradeable ID to inherit teams from (Default none)
"team_gradeable": {
"team_size_max": 3,
"inherit_from": "gradeable_id",
}
"grading_inquiry": {
"grade_inquiry_per_component_allowed": false,
}
- ta_grading -- If the TA will grade any/all of the assignments (Default false)
- discussion_thread_id -- The thread ID if using forums (Default none)
- syllabus_bucket -- (Default "Homework")
{
"title": "Example Json",
"instructions_url": "",
"id": "hw-1",
"type": "Electronic File",
"vcs": {
"repository_type": "submitty-hosted",
"vcs_path": "http://localhost:1511/path/to/repository",
"vcs_subdirectory": "subdirectory"
},
"team_gradeable": {
"team_size_max": 3,
"inherit_from": "gradeable_id",
},
"bulk_upload": false,
"grading_inquiry": {
"grade_inquiry_per_component_allowed": false
},
"ta_grading": false,
"discussion_thread_id": "thread_id",
"syllabus_bucket": "Homework"
}
{
"title": "Testing Json",
"id": "hw-bulk-upload",
"type": "Electronic File",
"bulk_upload": true,
"syllabus_bucket": "Homework"
}
{
"title": "Checkpoints Gradeable",
"id": "hw-checkpoints",
"type": "Checkpoints",
"syllabus_bucket": "Homework"
}
{
"title": "VCS Gradeable",
"id": "hw-vcs",
"type": "Electronic File",
"syllabus_bucket": "Homework",
"vcs": {
"repository_type": "submitty-hosted",
"vcs_path": "http://localhost:1511/path/to/repository",
"vcs_subdirectory": "subdirectory"
},
}