Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sleepypioneer/community-assistant-cli
A CLI tool to help with community event organisation
https://github.com/sleepypioneer/community-assistant-cli
Last synced: 2 days ago
JSON representation
A CLI tool to help with community event organisation
- Host: GitHub
- URL: https://github.com/sleepypioneer/community-assistant-cli
- Owner: sleepypioneer
- Created: 2023-06-27T14:22:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-27T23:01:18.000Z (over 1 year ago)
- Last Synced: 2024-06-20T20:55:54.056Z (7 months ago)
- Language: Go
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# community-assistant-cli
A CLI tool to help with community event organisation.
## Build the CLI binary
```bash
go mod tidy
go build -o community-assist
```## Run the CLI
```bash
./community-assist [flags]
```### Commands
#### `help`
```bash
./community-assist help
```#### `tweet`
Allows you to create a tweet formulated text from an input text file and save it out to a file.
```bash
export OPENAI_API_KEY =
./community-assist tweet --input --output
```#### `dashboard`
Displays a command line dashboard of stats for the given meetup event.
```bash
./community-assist dashboard --event-id "293908113"
```## Tests
```bash
go test ./...
```