twtxtlist/twtxtlist.nimble

21 lines
402 B
Nim

# Package
version = "0.1.0"
author = "Christine Dodrill"
description = "a list of twtxt hacker feeds"
license = "MIT"
srcDir = "src"
bin = @["twtxtlist"]
# Dependencies
requires "nim >= 0.13.0"
mode = ScriptMode.Verbose
task db, "SQLite database prompt":
exec "sqlite3 data/twtxt.db"
task migrate, "Run database migrations":
exec "sqlite3 data/twtxt.db"