Skip to content

Commit

Permalink
fix(scripts): move Deno configuration to scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiDood committed Apr 11, 2023
1 parent 8113e7b commit 45e394c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deno.json → scripts/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"tasks": {
"init": "initdb -D data -U postgres",
"db": "postgres -D data",
"template": "psql -U postgres -f scripts/init.sql -1 template1",
"template": "psql -U postgres -f init.sql -1 template1",
"create": "createdb -U postgres quizzo",
"drop": "dropdb -U postgres quizzo",
"register": "deno run --allow-env --allow-net scripts/register.ts"
"register": "deno run --allow-env --allow-net register.ts"
}
}

0 comments on commit 45e394c

Please sign in to comment.