https://github.com/akrck02/gtd-cli
CLI tools for GTD framework.
https://github.com/akrck02/gtd-cli
cli framework go gtd-framework
Last synced: about 1 year ago
JSON representation
CLI tools for GTD framework.
- Host: GitHub
- URL: https://github.com/akrck02/gtd-cli
- Owner: akrck02
- License: mit
- Created: 2022-02-13T18:54:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-02T17:53:44.000Z (about 1 year ago)
- Last Synced: 2025-02-28T21:01:01.464Z (about 1 year ago)
- Topics: cli, framework, go, gtd-framework
- Language: Go
- Homepage:
- Size: 84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

This is the official CLI tool to operate with Getting Things Done Framework.
## How to use GTDF-CLI
#### 1. Create a new GTDF project
Create a new GTDF project in the linked version.
```bash
gtd new my_project
```
#### 2. Create a new view
Create a new directory with the typescript view inside.
```
gtd view my_view
```
#### 3. Create a new component
If a view name is passed as argument, the component will belong to that view directory, otherwise, the component will be global.
```bash
gtd component my_component [my_view]
```
#### 4. Create a new service
Create a new typescript data service
```bash
gtd service my_service
```
#### 5. Create a new test
Create a new test. You can pass the test type, default value will be unit testing (u).
```bash
gtd test my_test [u|i]
```