Autolab

所属分类:collect
开发工具:Ruby
文件大小:0KB
下载次数:0
上传日期:2023-07-12 05:28:26
上 传 者sh-1993
说明:  课程管理服务,支持自动分级编程作业。,
(Course management service that enables auto-graded programming assignments.,)

文件列表:
.bundle/ (0, 2023-12-11)
.bundle/config (31, 2023-12-11)
.dockerignore (6, 2023-12-11)
.env.template (1493, 2023-12-11)
.erb-lint.yml (782, 2023-12-11)
.overcommit.yml (1450, 2023-12-11)
.rake_tasks~ (604, 2023-12-11)
.rspec (81, 2023-12-11)
.rubocop.yml (5594, 2023-12-11)
.rubocop_todo.yml (4592, 2023-12-11)
.ruby-version (6, 2023-12-11)
CONTRIBUTING.md (6449, 2023-12-11)
Dockerfile (1584, 2023-12-11)
Gemfile (4161, 2023-12-11)
Gemfile.lock (12542, 2023-12-11)
LICENSE (11324, 2023-12-11)
Rakefile (269, 2023-12-11)
SECURITY.md (390, 2023-12-11)
app/ (0, 2023-12-11)
app/assets/ (0, 2023-12-11)
app/assets/config/ (0, 2023-12-11)
app/assets/config/manifest.js (441, 2023-12-11)
app/assets/images/ (0, 2023-12-11)
app/assets/images/1.gif (668, 2023-12-11)
app/assets/images/AUTOLAB.png (2974, 2023-12-11)
app/assets/images/AUTOLAB@2x.png (6298, 2023-12-11)
app/assets/images/DonkeyKong.jpg (93152, 2023-12-11)
app/assets/images/arrow.png (446, 2023-12-11)
app/assets/images/arrowDown.png (383, 2023-12-11)
app/assets/images/arrowRight.png (391, 2023-12-11)
app/assets/images/autolab.ico (32038, 2023-12-11)
... ...

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](http://autolab-d01.club.cc.cmu.edu:8080/buildStatus/icon?job=autolab+demosite)](http://autolab-d01.club.cc.cmu.edu:8080/job/autolab%20demosite/) [![Better Uptime Badge](https://betteruptime.com/status-badges/v1/monitor/95ro.svg)](https://betteruptime.com/?utm_source=status_badge) ![GitHub last commit](https://img.shields.io/github/last-commit/autolab/Autolab) Subscribe to our [mailing list](https://groups.google.com/g/autolabproject) to receive 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](https://docs.autolabproject.com/#demonstration-site) for more information on how to log in and suggestions on things to try. ## Installation We released new documentation! Check it out [here](https://docs.autolabproject.com). ## Testing ### Setting up Tests 1. Add a test database in `database.yml` 2. Create and migrate the database. ```sh 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. 3. Create necessary directories. ``` mkdir attachments/ tmp/ ``` ### Running Tests After setting up the test environment, simply run spec by: ```sh 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: ```sh rake spec SPEC=./spec//.rb ``` ## Rails 5 Support 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. ## Updating Docs To install mkdocs, run ```bash pip install --user mkdocs ``` We rely on the `mkdocs-material` theme, which can be installed with ```bash pip install --user mkdocs-material ``` To run and preview this locally, run: ```bash 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 ```bash 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`. ## Contributing We encourage you to contribute to Autolab! Please check out the [Contributing to Autolab Guide](https://github.com/autolab/Autolab/blob/master/CONTRIBUTING.md) for guidelines about how to proceed. You can reach out to us on [Slack](https://communityinviter.com/apps/autolab/autolab-project) as well. ## License Autolab is released under the [Apache License 2.0](http://opensource.org/licenses/Apache-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.11.0](https://github.com/autolab/Autolab/releases/tag/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 - Numerous UI updates - Numerous bug fixes and improvements ### [v2.10.0](https://github.com/autolab/Autolab/releases/tag/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 - Numerous UI updates - Numerous bug fixes and improvements ### [v2.9.0](https://github.com/autolab/Autolab/releases/tag/v2.9.0) (2022/08/08) Metrics Excluded Categories and New Speedgrader Interface - Instructors can now exclude selected categories of assessments from metrics watchlist calculations - Introduced new speedgrader interface which utilizes the Golden Layout library, amongst other new features - Numerous bug fixes and improvements ### [v2.8.0](https://github.com/autolab/Autolab/releases/tag/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 and improvements **For older releases, please check out the [releases page](https://github.com/autolab/Autolab/releases).**

近期下载者

相关文件


收藏者