https://github.com/thoreinstein/rig-db
https://github.com/thoreinstein/rig-db
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thoreinstein/rig-db
- Owner: thoreinstein
- License: mit
- Created: 2026-01-31T17:44:34.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-01-31T17:48:30.000Z (6 months ago)
- Last Synced: 2026-02-01T05:29:06.212Z (6 months ago)
- Language: Zig
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rig-db
A database CLI tool written in Zig.
## Prerequisites
- [Zig](https://ziglang.org/download/) (0.11.0 or later)
## Building
To build the project:
```bash
zig build
```
The executable will be placed in `zig-out/bin/rig-db`.
## Running
To run the application directly:
```bash
zig build run
```
Or run the built executable:
```bash
./zig-out/bin/rig-db
```
### Available Commands
- `rig-db help` - Show help message
- `rig-db version` - Show version information
### Examples
```bash
# Show help
zig build run -- help
# Show version
zig build run -- version
```
## Testing
Run the test suite:
```bash
zig build test
```
## Development
The project structure:
```
rig-db/
├── build.zig # Build configuration
├── src/
│ └── main.zig # Main entry point
└── README.md # This file
```