-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathallographer.nimble
68 lines (54 loc) · 1.8 KB
/
allographer.nimble
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Package
version = "0.31.0"
author = "Hidenobu Itsumura @dumblepytech1 as 'medy'"
description = "A Nim query builder library inspired by Laravel/PHP and Orator/Python"
license = "MIT"
srcDir = "src"
# backend = "c"
# bin = @["allographer/cli/dbtool"]
# binDir = "src/bin"
# installExt = @["nim"]
# skipDirs = @["allographer/cli"]
# Dependencies
requires "nim >= 1.2.0"
when NimMajor > 1:
requires "db_connector >= 0.1.0"
requires "checksums >= 0.1.0"
import strformat, os
task test, "run testament test":
exec &"testament p 'tests/sqlite/test*.nim'"
exec &"testament p 'tests/postgres/test*.nim'"
exec &"testament p 'tests/mariadb/test*.nim'"
exec &"testament p 'tests/mysql/test*.nim'"
exec &"testament p 'tests/surrealdb/test*.nim'"
for kind, path in walkDir(getCurrentDir() / "tests"):
if not path.contains(".") and path.fileExists():
exec "rm -f " & path
task docs, "Generate API documents":
let
deployDir = &"docs/v{NimMajor}"
pkgDir = srcDir / "allographer"
srcFiles = @[
"connection",
"query_builder",
"schema_builder",
]
if dirExists(deployDir):
rmDir deployDir
for f in srcFiles:
let srcFile = pkgDir / f & ".nim"
exec &"nim doc --hints:off --project --out:{deployDir} --index:on {srcFile}"
let toolImage = "basolato:tool"
task setupTool, "Setup tool docker image":
exec &"docker build -t {toolImage} -f tool_Dockerfile ."
proc generateToc(dir: string) =
let cwd = getCurrentDir()
for f in listFiles(dir):
if 3 < f.len:
let ext = f[^3..^1]
if ext == ".md":
exec &"docker run --rm -v {cwd}:/work -it {toolImage} --insert --no-backup {f}"
task toc, "Generate TOC":
generateToc(".")
generateToc("./documents/rdb")
generateToc("./documents/surrealdb")