From 1175a8fa3d5b5bda120942e9683d6c2a16adb7c4 Mon Sep 17 00:00:00 2001 From: Adrian L Thomas Date: Sun, 7 Apr 2024 19:48:51 +0100 Subject: [PATCH] docs: update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 059d576..5af1b4b 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ Also done via GitHub Actions. However if you want to deploy manually, you can do # Database ```bash -npm run db:init # executes the migration script to setup the db -npm run db:query # simple select statement against the DB +npm run db:init:local # executes the migration script to setup the db +npm run db:query:local # simple select statement against the DB -# the above commands run locally due to the `--local` flag. +# the above commands run locally due to the `--local` flag. There's also the remote equivalents. npm run db:generate # generates a migration script if you change the schema ```