https://github.com/threedotslabs/cli
This is the tdl CLI tool used for running the interactive trainings on the https://academy.threedots.tech/
https://github.com/threedotslabs/cli
Last synced: 12 months ago
JSON representation
This is the tdl CLI tool used for running the interactive trainings on the https://academy.threedots.tech/
- Host: GitHub
- URL: https://github.com/threedotslabs/cli
- Owner: ThreeDotsLabs
- Created: 2021-09-07T19:29:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-06-09T09:31:39.000Z (about 1 year ago)
- Last Synced: 2025-06-19T20:03:13.197Z (about 1 year ago)
- Language: Go
- Homepage: https://academy.threedots.tech/
- Size: 281 KB
- Stars: 14
- Watchers: 4
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tdl
This is the `tdl` CLI tool used for running the interactive trainings on the [Three Dots Labs Academy](https://academy.threedots.tech).
## Install
### Brew (macOS) - recommended
```sh
brew install ThreeDotsLabs/tap/tdl
```
### Script (macOS, Linux) - recommended
```sh
sudo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/ThreeDotsLabs/cli/master/install.sh)" -- -b /usr/local/bin
```
### Script (Windows)
Install to your home directory:
```sh
iwr https://raw.githubusercontent.com/ThreeDotsLabs/cli/master/install.ps1 -useb | iex
```
Or install in any chosen path:
```sh
$env:TDL_INSTALL = 'bin\'
iwr https://raw.githubusercontent.com/ThreeDotsLabs/cli/master/install.ps1 -useb | iex
```
### Binaries
Download the latest binary from GitHub and move it to a directory in your `$PATH`.
[See Releases](https://github.com/ThreeDotsLabs/cli/releases)
### From source
```sh
go install github.com/ThreeDotsLabs/cli/tdl@latest
```