Skip to content

pfgray/yaltt

Repository files navigation

(Yet Another) LTI Test Tool

Yaltt is an LTI test tool that supports:

  • Dynamic Registration
  • Token Service Auth
  • Deep Linking
  • Grade Services
  • Post messages
  • Roster Services

Hosted

You can use the hosted version of Yaltt at https://yaltt.paulgray.net, which is free to use. This is useful for testing another hosted platform. You can use a google account to log in.

Running locally

If you just want to run yaltt locally and not make changes, you can start yaltt by cloning this repo and running:

git clone [email protected]:pfgray/yaltt.git
cd yaltt
echo "COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml:docker-compose.local.yml" >> .env
docker compose up -d

After the containers are up and running, run:

pnpm install
pnpm build @yaltt/frontend
pnpm build @yaltt/backend
docker compose restart frontend backend

If you're an Instructure engineer using traefik (setup Canvas via inst-cli), then consider including the docker-compose.instructure.traefik.yml docker compose file.

Developing locally

If you want to run yaltt locally and make changes, then you should omit the docker-compose.local.yml file:

git clone [email protected]:pfgray/yaltt.git
cd yaltt
echo "COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml" >> .env
docker compose up -d