Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emarifer/go-cli-bubbletea-todoapp
Command line application (CLI Todo App) made with Bubble Tea (to create a TUI) & Cobra frameworks, and CRUD to a SQLite database
https://github.com/emarifer/go-cli-bubbletea-todoapp
bubbles bubbletea cli-app cli-todo cli-tool cobra golang gorm-orm lipgloss sqlite3 text-based text-ui text-user-interface
Last synced: about 1 month ago
JSON representation
Command line application (CLI Todo App) made with Bubble Tea (to create a TUI) & Cobra frameworks, and CRUD to a SQLite database
- Host: GitHub
- URL: https://github.com/emarifer/go-cli-bubbletea-todoapp
- Owner: emarifer
- License: mit
- Created: 2024-09-13T19:31:11.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T12:36:03.000Z (3 months ago)
- Last Synced: 2024-09-16T10:47:54.500Z (3 months ago)
- Topics: bubbles, bubbletea, cli-app, cli-todo, cli-tool, cobra, golang, gorm-orm, lipgloss, sqlite3, text-based, text-ui, text-user-interface
- Language: Go
- Homepage:
- Size: 575 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Command line application (CLI Todo App) made with Bubble Tea (to create a TUI) & Cobra frameworks, and CRUD to a SQLite database
![GitHub License](https://img.shields.io/github/license/emarifer/go-cli-bubbletea-todoapp) ![Static Badge](https://img.shields.io/badge/Go-%3E=1.23-blue)
### Features 🚀
- [x] **Using [GORM](https://gorm.io/) for agile database management:** The database used is SQLite3 and its (hidden) storage file is created in the user folder.
- [x] **Using [Cobra](https://github.com/spf13/cobra) framework:** A library for creating powerful modern CLI applications. `Cobra` provides its own [program](https://github.com/spf13/cobra-cli) that will create your application and add any commands you want. It's the easiest way to incorporate `Cobra` into your application. If you prefer to use this option to create CLI apps with `Cobra`, install it with the command: `go install github.com/spf13/cobra-cli@latest`.
- [x] **Using the [Bubble Tea](https://github.com/charmbracelet/bubbletea) framework:** The functional and stateful way to build terminal apps. A Go framework based on [The Elm Architecture](https://guide.elm-lang.org/architecture/). `Bubble Tea` is well-suited for simple and complex terminal applications, either inline, full-window, or a mix of both.
- [x] **Using the [Lip Gloss](https://github.com/charmbracelet/lipgloss) library:** From the same creators of the Bubble Tea framework. It allows you to style the TUI (text-based user interface) in a similar way to how it is done with CSS, allowing you to easily create layouts.---
### 🖼️ Screenshots:
###### Terminal showing how to achieve autocompletion in the current session and the resulting list of commands:
###### Terminal showing application help:
###### Terminal showing successful task creation and list of tasks in table form:
###### Terminal showing the task creation form indicating a warning & the details of a specific task given its ID:
###### Terminal showing the update of the fields of a task given its ID & the error output of the application when the user does not enter the correct arguments:
---
### 👨🚀 Getting Started:
#### Installing the application
If you want to install the application on your machine and you have Go installed, you can simply run the following command (requires Go 1.23 or higher):
```
$ go install -ldflags="-s -w" github.com/emarifer/go-cli-bubbletea-todoapp/cmd/task@latest
```This will download the source code (and any necessary dependencies) and compile it into an executable that will be placed in the PATH you've set for Golang binaries.
If you don't have Go, you can download the appropriate executable for your system from [here](https://github.com/emarifer/go-cli-bubbletea-todoapp/releases). Once unzipped, you can place it in the folder where your system normally stores executables (although you could place it in any directory). Then, you just have to update the system PATH with that address.
#### Building the app yourself (Go 1.23 or higher required)
- Clone the repository and run the following commands:
```
$ go mod tidy && go run ./cmd/task -h # to start the application in development mode
```- Build for production:
```
$ go build -ldflags="-s -w" -o ./bin/task ./cmd/task # ./bin/task -h to run the application
```In the latter case, you can call the `task` command by placing the executable you generated in the appropriate directory on your system and proceeding as above.
---
### Happy coding 😀!!