tts-be

(★ 13)

A platform where students can experiment with the possible combination of schedule options they can pick at the start of the semester

File Explorer

  • .gitignore
  • docker-compose.yaml
  • Makefile
  • README.md
  • tts-protobufs

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker compose

View Details ▼

Run and manage multi container Docker applications.

docker compose ps

List all running containers:

docker compose up {{[-d|--detach]}}

Create and start all containers in the background using a `docker-compose.yml` file from the current directory:

docker compose up --build

Start all containers, rebuild if necessary:

🔍

docker

View Details ▼

Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.

docker {{[ps|container ls]}} {{[-a|--all]}}

List all Docker containers (running and stopped):

docker {{[run|container run]}} --name {{container_name}} {{image}}

Start a container from an image, with a custom name:

docker container {{start|stop}} {{container_name}}

Start or stop an existing container:

🔍

wsl

View Details ▼

Manage the Windows Subsystem for Linux.

wsl {{shell_command}}

Start a Linux shell (in the default distribution):

wsl {{[-e|--exec]}} {{command}} {{command_arguments}}

Run a Linux command without using a shell:

wsl {{[-d|--distribution]}} {{distribution}} {{shell_command}}

Specify a particular distribution:

// repository documentation