README: update

This commit is contained in:
0x1eef 2023-12-22 18:23:10 -03:00
parent 36e29ad373
commit 48badc0ccd
2 changed files with 12 additions and 1 deletions

View file

@ -2,6 +2,17 @@
...
## Features
* Provides a web application that manages hobby projects.
* Provides a command-line utility to start / stop a web server.
* The web server binds to localhost:7778 by default.
* Works online, or offline.
* Lightweight: Ruby, and SQLite3 are the primary dependencies.
* Database: `~/.local/share/twenty/twenty.sqlite`.
* Easy to install: `gem install twenty`.
* Easy to use: `$ twenty up`.
## Usage
Usage: twenty COMMAND [OPTIONS]

View file

@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
gem.version = "0.1.0"
gem.licenses = ["0BSD"]
gem.files = []
gem.summary = "Add summary here..."
gem.summary = "Simple task management for hobby projects"
gem.description = gem.summary
gem.add_runtime_dependency "twenty-backend", "~> 0.1"
gem.add_runtime_dependency "twenty-frontend", "~> 0.1"