https://github.com/masterpointio/taskit
Taskit is the Masterpoint Taskfile Kit 🦾
https://github.com/masterpointio/taskit
bash shell shell-scripts taskfile taskfile-kit taskfile-tasks
Last synced: 9 months ago
JSON representation
Taskit is the Masterpoint Taskfile Kit 🦾
- Host: GitHub
- URL: https://github.com/masterpointio/taskit
- Owner: masterpointio
- License: apache-2.0
- Created: 2023-07-20T10:44:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T08:10:10.000Z (10 months ago)
- Last Synced: 2025-04-11T15:15:30.472Z (9 months ago)
- Topics: bash, shell, shell-scripts, taskfile, taskfile-kit, taskfile-tasks
- Language: JavaScript
- Homepage: https://masterpoint.io
- Size: 50.8 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Taskit
Taskit (said task-kit or TK for short) is the Masterpoint [Taskfile](https://taskfile.dev/) Kit. We utilize this set of Taskfiles across clients as a means by which to share repeatable tasks like repo setup, tool automation, and similar shared scripting.
## Using Taskit
Taskit is built around the idea of being consumed by downstream repos. It is pulled through a standard Taskfile that you can find in [`exports/Taskfile.dist.yaml`](./exports/Taskfile.dist.yaml).
The procedure to add it to a project is to do the following:
1. Copy `exports/Taskfile.dist.yaml` to your project by running the following command:
```bash
curl -sL https://raw.githubusercontent.com/masterpointio/taskit/main/exports/Taskfile.dist.yaml -o Taskfile.dist.yaml
```
1. Run `task init` to initialize taskit by downloading this repo into your remote repo.
1. Note, `git` is a requirement.
1. Run `task --list` to list all newly available tasks from taskit.
1. (Optional) Add a `.env.taskit` file which can include overrides for any variables in taskit.
1. Now that the setup process for taskit is complete, you should commit and push the new configuration files to your repo. Well done 👏
## TODO
- [x] Upstream various tasks from our distributed usage
- [ ] Create a test harness + tests around tasks
- [ ] Publish versions