Skip to content

AndiiCodes/Custom-RMIT-Assessments-Dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Star Badge Website status Custom RMIT University Assessments Dashboard

Usage

  • Download the backend, Canvas-Server and host it online.
  • add API_KEY env variable, ( generate an api token from RMIT Canvas profile settings) ,
    • or you can just replace the process.env.API_KEY on Canvas-Server with your token directly into the codee ( Not recommended for secuirty purposes.)
  • host the Front-End on vercel or gh pages
  • you might need to change afew things, like class name , favicon if needed.. etc
  • if you need to hide some extra courses for example HOW2RMIT OR any other course, just modify the code below:
 courses = courses.filter(
            (course) =>
              course.name !== "Succeed VE 2024" &&
              course.name !== "Dip of Information Technology (2405)"
          ); ```

  • you can find above code in here > public > index.html