From 20ae499852cae28204426bb92b67887ed86626ca Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sun, 4 Feb 2024 14:08:53 -0500 Subject: [PATCH] add export-db task --- Taskfile.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Taskfile.yaml b/Taskfile.yaml index bafdfb2..ac2bd42 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -6,6 +6,10 @@ vars: GREETING: Hello, World! tasks: + export-db:dev: + cmds: + - sqlite3 games.db '.mode json' '.once static/dev/games.json' 'select * from game' + deploy: deps: [build] cmds: