Import Trello cards into your GitHub projects.
- With Docker, using the GitHub Package
docker run -it --rm -v "${PWD}:/local" ghcr.io/timtraversy/trellotogithub:latest \
-c local/path/to/config.yaml
-
Download binary for your OS from Release page
-
Build from source
- Dependencies: Go 1.15
git clone https://github.com/timtraversy/trellotogithub
cd trellotogithub
go run .
To Do
First, fork and clone this repo onto your machine.
(Option 1) If you have VS Code and Docker installed, the simplest way to get going is to open this project in a VS Code Development Container. Just run Remote-Containers: Open Folder in Container
in VS Code and select the cloned folder. This wil spin up a Go container with the proper Go version and settings, which you can use to edit and compile the source.
(Option 2) If you have Go installed on your machine, you can edit and compile the source directly.
Feel free to open issues in the GitHub issue tracker.
To Do