all repos — litestore @ edbb64dd35921a1a0e4caf242bb70a0bc3f1fc5d

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.9.2"
  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