Autolab is a course management service, initially developed by a team of students at Carnegie Mellon University, that enables instructors to offer autograded programming assignments to their students over the Web. The two key ideas in Autolab are autograding, that is, programs evaluating other programs, and scoreboards.
Autolab also provides other services that instructors expect in a course management system, including gradebooks, rosters, handins/handouts, lab writeups, code annotation, manual grading, late penalties, grace days, cheat checking, meetings, partners, and bulk emails.
Since 2010, Autolab has had a transformative impact on education at CMU. Each semester, it is used by about 5,000 CMU students in courses in Pittsburgh, Silicon Valley, Qatar, and Rwanda. In Fall, 2014, we are releasing Autolab as an open-source system, where it will be available to schools all over the world, and hopefully have the same impact it's had at CMU.
Subscribe to our mailing list to receive announcements about major releases and updates to the Autolab Project.
We have a demo site running at https://nightly.autolabproject.com/. See the docs for more information on how to log in and suggestions on things to try.
We released new documentation! Check it out here.
-
Add a test database in
database.yml
-
Create and migrate the database.
RAILS_ENV=test bundle exec rails autolab:setup_test_env
Do not forget to use
RAILS_ENV=test bundle exec
in front of every rake/rails command. -
Create necessary directories.
mkdir tmp/
After setting up the test environment, simply run spec by:
bundle exec rails spec
You may need to run RAILS_ENV=test bundle exec rails autolab:setup_test_env
when re-running tests as some tests
may create models in the database.
You can also run individual spec files by running:
rake spec SPEC=./spec/<path_to_spec>/<spec_file>.rb
Autolab is now running on Rails 6. The Rails 5 branch can be found on master-rails-5
.
We will not be backporting any new features from master
to master-rails-5
, and we have discontinued Rails 5 support.
To install mkdocs, run
pip install --user mkdocs
We rely on the mkdocs-material
theme, which can be installed with
pip install --user mkdocs-material
To run and preview this locally, run:
python3 -m mkdocs serve
Once your updated documentation is in master
, Jenkins will automatically run a job to update the docs. You can trigger a manual update with
python3 -m mkdocs gh-deploy
This will build the site using the branch you are currently in (hopefully master
), place the built HTML files into the gh-pages
branch, and push them to GitHub. GitHub will then automatically deploy the new content in gh-pages
.
We encourage you to contribute to Autolab! Please check out the Contributing to Autolab Guide for guidelines about how to proceed. You can reach out to us on Slack as well.
Autolab is released under the Apache License 2.0.
Please feel free to use Autolab at your school/organization. If you run into any problems, you can reach the core developers at [email protected]
and we would be happy to help. On a case-by-case basis, we also provide servers for free. (Especially if you are an NGO or small high-school classroom)
v3.0.0 (2024/07/24) UI-based deployment configuration, Simple File Manager, Export / Import Course, Tango, Grading Improvements
- Configuration of authentication, Github, SMTP moved to UI
- Simple File Manager to manage files in courses through a UI
- Import / Export Course data in one go, with improved assessment importing
- Improvements to grading UI/UX such as an improved Gradebook, Code Diff Viewer, Starred Problems
- Improvements to autograding with direct Docker file uploading and the option to selectively disable network access
v2.12.0 (2024/01/20) Attachment categories and visual cues
- Ruby upgraded to 3.2.2
- Rails upgraded to 6.1.7.6
- Instructors can now specify a category and "release at" date for attachments
- Assessment start / end dates are now shown on course homepages
v2.11.0 (2023/05/21) LTI Settings UI, extensions metrics, and simultaneous extension creation
- Introduced UI to manage LTI integration settings
- Added extension metrics for instructors to monitor students by number of extensions granted
- Instructors can now create extensions for multiple students at once
v2.10.0 (2023/01/13) LTI Integration, Generalized Feedback, and Streaming Output
- Autolab now supports roster syncing with courses on Canvas and other LTI (Learning Tools Interoperability) services. For full instructions on setup, see the documentation.
- Streaming partial output and new feedback interface
- Generalized annotations
For older releases, please check out the releases page.