su18 / Autolab

Course management service that enables auto-graded programming assignments.

Home Page:http://www.autolabproject.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Build Status GitHub last commit

Subscribe to our mailing list to recieve announcements about major releases and updates to the Autolab Project.

Try It Out

We have a demo site running at https://nightly.autolabproject.com/. See the docs for more information on how to login and suggestions on things to try.

Installation

We released new documentation! Check it out here.

Testing

Setting up Tests

  1. Add a test database in database.yml

  2. Create and migrate the database.

    RAILS_ENV=test bundle exec rails db:create
    RAILS_ENV=test bundle exec rails db:migrate

    Do not forget to use RAILS_ENV=test bundle exec in front of every rake/rails command.

  3. Create necessary directories.

    mkdir attachments/ tmp/
    

Running Tests

After setting up the test environment, simply run spec by:

bundle exec rails spec

Rails 4 Support

Autolab is now running on Rails 5. The Rails 4 branch can be found on master-rails-4. We will not be backporting any new features from master to master-rails-4, and we have discontinued Rails 4 support.

Updating Docs

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:

mkdocs serve

Once your updated documentation is in master, run:

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 to GitHub. GitHub will then automatically deploy the new content in gh-pages.

Finally, go to the repository Settings page, and set docs.autolabproject.com under the Custom domain field.

Contributing

We encourage you to contribute to Autolab! Please check out the Contributing to Autolab Guide for guidelines about how to proceed. You can also reach out to us on Slack as well.

License

Autolab is released under the Apache License 2.0.

Using Autolab

Please feel free to use Autolab at your school/organization. If you run into any problems, you can reach the core developers at autolab-dev@andrew.cmu.edu 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)

Changelog

v2.8.0 (2021/12/20) GitHub Integration and Roster Upload Improvement

  • Students can now submit code via GitHub
  • Improved Roster Upload with better error reporting
  • Numerous bug fixes

v2.7.0 (2021/05/29) Autolab Docker Compose, Student Metrics, Redesigned Documentation

  • Integration with new Docker Compose installation method
  • Student Metrics Feature, which allows instructors to identify students who may be in need of attention
  • Redesigned Autolab documentation
  • Numerous bug fixes

v2.6.0 (2020/10/24) Formatted Feedbacks, Course Dashboard, Accessibility

  • Formatted Feedback feature
  • Introduction of Course Dashboards
  • Numerous bug fixes

(2021/10/12) Moved from Uglifier to Terser

  • Autolab has migrated from Uglifier to Terser for our Javascript compressor in order to support the latest Javascript syntax. Please change Uglifier.new(harmony: true) to :terser in your production.rb

v2.5.0 (2020/02/22) Upgrade from Rails 4 Rails 5

  • Autolab has been upgraded from Rails 4 to Rails 5 after almost a year of effort! There are still some small bugs to be fixed, but it should not affect the core functionality of Autolab. Please file an issue if you believe you have found a bug.

v2.4.0 (2020/02/08) Speedgrader - The new code viewer

  • The File Tree shows file hierarchy of student’s submission
    • Click on a file to open
    • Click on a folder to expand
  • The Symbol Tree allows you to jump quickly to functions in the student’s code
    • Click on a function to jump
  • You can easily switch between submissions and files
    • Up/down arrow keys change file
    • Right/left arrow keys change submission
  • How to use new annotation system:
    • Make annotations with grade adjustments
    • Important: annotations can only be made for non-autograded problems (to preserve the original autograded score of the autograded problem)
    • Annotations grade changes summarized by the Annotations table on the right
  • New: Score for problem automatically updates after annotation score changes based on the following formula (this no longer has to be done manually on the Gradebook):

score = max_score + ∑(annotation score changes)

  • For example, a way to grade style in a deductive manner would be to set the max score for the Style problem, and make annotations with negative score for style violations and zero score for good style

UI Enhancements

  • Tables are more standardized
  • Fixed text overflowing issues on Gradebook modals
  • Improved standardization and UI for annotations on PDF submissions

Others

  • Course assistants are now able to submit assignments early

About

Course management service that enables auto-graded programming assignments.

http://www.autolabproject.com/

License:Apache License 2.0


Languages

Language:Ruby 43.4%Language:HTML 18.4%Language:Java 16.6%Language:JavaScript 13.7%Language:CSS 4.0%Language:SCSS 2.9%Language:Shell 0.7%Language:Dockerfile 0.1%Language:CoffeeScript 0.1%Language:Python 0.0%