diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-03 22:01:59 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-03 22:01:59 +0100 |
commit | dfb2bbd0d26c3e0a5f9d93be671677ab0491f934 (patch) | |
tree | ce7ccfebac888a5638fd822ca9bb04b9e25aef53 | |
parent | f235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633 (diff) | |
download | build-coordinator-dfb2bbd0d26c3e0a5f9d93be671677ab0491f934.tar build-coordinator-dfb2bbd0d26c3e0a5f9d93be671677ab0491f934.tar.gz |
Add sqitch conf and empty plan
-rw-r--r-- | sqitch.conf | 14 | ||||
-rw-r--r-- | sqitch/sqitch.plan | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/sqitch.conf b/sqitch.conf new file mode 100644 index 0000000..44a53d2 --- /dev/null +++ b/sqitch.conf @@ -0,0 +1,14 @@ +[core] + engine = pg + top_dir = sqitch + plan_file = sqitch/sqitch.plan +[engine "pg"] + target = pg_guix_build_coordinator + top_dir = sqitch/pg +[engine "sqlite"] + target = sqlite_guix_build_coordinator + top_dir = sqitch/sqlite +[target "sqlite_guix_build_coordinator"] + uri = db:sqlite:guix_build_coordinator.db +[target "pg_guix_build_coordinator"] + uri = db:pg://guix_build_coordinator@/guix_build_coordinator diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan new file mode 100644 index 0000000..4cce5ba --- /dev/null +++ b/sqitch/sqitch.plan @@ -0,0 +1,3 @@ +%syntax-version=1.0.0 +%project=guix-build-coordinator + |