Skip to content

Welcome to BlockQueue

Yudha Subki edited this page Dec 11, 2023 · 1 revision

How to Install

cp config.yaml.example config.yaml
  • Create your own SQLite3:
sqlite3 database-name
  • Setup the configuration file
http:
  port: 8080
logging:
  level: "info"
  type:  "json"
sqlite:
  db_name: "/path/sqlitedb"
  busy_timeout: 5000
etcd:
  path: "/setup-path-to-write-etcd/database" # automatically generate while apps running
  • Migrate by running command:
./blockqueue migrate -config /your/config-path/config.yaml
  • Running the Queue:
./blockqueue http -config /your/config-path/config.yaml

Clone this wiki locally