Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Documentation:System] Term creation instructions #592

Merged
merged 3 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions _docs/sysadmin/configuration/term_creation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: Term Creation
category: System Administrator > Configuration & Administration
redirect_from:
- /sysadmin/course_creation
---


### Creating a term
To create a term, you should use the script
```
/usr/local/submitty/sbin/create_term.sh
```
Follow these usage guidelines:
```
Usage: create_term.sh [-a|--amend] <term> '<name of term>' <start date> <end date>
```

The term should be an abbreviated semester name like:
```
s24
```
While name of term would be a more descriptive name like "Spring 2024".

The start and end date must be formatted in mm/dd/yyyy format.

Use -a or --amend to amend an existing term.
An example valid usage of this command would be:

```
create_term.sh s24 'Spring 2024' 01/09/2024 05/01/2024
```
1 change: 1 addition & 0 deletions navtreedata.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ var NAVTREE =
[ "System Customization", "/sysadmin/installation/system_customization", null ],
] ],
[ "Configuration & Administration", "/sysadmin/configuration/course_creation", [
[ "Term Creation", "/sysadmin/configuration/term_creation", null ],
[ "Course Creation", "/sysadmin/configuration/course_creation", null ],
[ "Setting up Version Control", "/sysadmin/configuration/version_control", null ],
[ "SAML Authentication", "/sysadmin/configuration/saml_authentication", null ],
Expand Down
Loading