all repos — litestore @ ab9dffa3f7f87cd5b3b38d051c2dc81b7adc8217

A minimalist nosql document store.

src/litestorepkg/lib/config.nim

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
const
  pkgName*        = "litestore"
  pkgVersion*     = "1.6.0"
  pkgAuthor*      = "Fabio Cevasco"
  pkgDescription* = "Self-contained, lightweight, RESTful document store."
  pkgLicense*     = "MIT"
  appname*        = "LiteStore"

var
  file*           = "data.db"
  address*        = "127.0.0.1"
  port*           = 9500