Skip to content
Radhika Mogarkar edited this page May 7, 2018 · 1 revision

Overview

Academic writing project is a 3-tiered application:

  • ATHANOR (Rhetorical Parser)
  • TAP (Text Analytics Pipeline)
  • AcaWriter (web app)

Acawriter is a web-based application built as a part of this complete Academic writing project to provide online feedback to students for their writing. AcaWriter requires Athanor & TAP running for it to provide feedback.

TYPICAL USE CASE

STUDENTS:

  1. Login using UTS SSO
  2. They have an option to either –
  • create a new document
  • use an assignment code – get the document
  • Start analysing the existing document
  1. Text Analyser:
    • Add text (copy/paste into text area)
    • Fetch feedback based on the Genre (Analytic or Reflective) of the documents under analysis
    • Get Feedback & Save
    • When happy with the text, end users would copy it back to the source

Text drafts are autosaved every minute

ACADEMICS:

  1. Create Assignments: Assignments with specific Genre
  2. Share assignment code with students to use the system

SUPER ADMIN

  1. Super admin role will need to be enabled via the database manually.
docker-compose exec postgres psql -U default -W -d default

insert into user_role (user_id, role_id) values (1,1);
  1. Enable managing users
  2. Create and manage examples

Clone this wiki locally