Skip to content
Snippets Groups Projects
Commit bc49e32b authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

updated README to reflect new structure plan

parent 6e74a400
No related branches found
No related tags found
No related merge requests found
...@@ -3,18 +3,16 @@ ...@@ -3,18 +3,16 @@
These python and bash scripts (and a C program) serve to automate assignment These python and bash scripts (and a C program) serve to automate assignment
management, with an eye toward scaling to larger class sizes. management, with an eye toward scaling to larger class sizes.
In the repository, the scripts are divided into those that interface with The scripts that interface with remote systems are in the `api` directory, and
remote systems and those that automate the tasks. In practice, you'll want to the scripts that do work are in the top-level directory.
place both in the same directory, specifically the directory in which you'll
collect students' repositories for grading.
- apis/ - api/
- Directory containing functions that interface with `git.unl.edu` and - Directory containing functions that interface with `git.unl.edu` and
`canvas.unl.edu`. When you copy these to the grading directory, place `canvas.unl.edu`. When you copy these to the grading directory, place
your api keys in `config.py`. your api keys in `config.py`.
- automation/ - old-automation/
- Directory containing scripts to clone, create, process, etc., student - Directory containing early fall 2019 scripts to clone, create, process,
repositories. etc., student repositories.
- 1195 - 1195
- Directory containing scripts from summer 2019 pilot of new course - Directory containing scripts from summer 2019 pilot of new course
structure. Should be obsolete (and removed) by end of fall 2019. structure. Should be obsolete (and removed) by end of fall 2019.
......
config.py
class Config: class Config:
# GitLab API Configuration # GitLab API Configuration
gitlab_url = 'https://git.unl.edu/' gitlab_url = 'https://git.unl.edu/'
gitlab_api_key = None gitlab_api_key = 'this shouldn\'t be here'
# Canvas API configuration # Canvas API configuration
canvas_url = 'https://canvas.unl.edu/api/v1/' canvas_url = 'https://canvas.unl.edu/api/v1/'
canvas_api_key = None canvas_api_key = 'this shouldn\'t be here'
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment