- 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.)
- or you can just replace the
- 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 > script.js