Skip to content

Commit

Permalink
fix: remove --env from start command
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Oct 7, 2024
1 parent 7b1ca28 commit 2ad1ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"db:generate": "deno run -A --node-modules-dir npm:drizzle-kit generate",
"db:generate:key": "deno run ./src/db/generateKey.ts",
"dev": "deno run --env --allow-net --allow-env --allow-read --allow-write --watch src/main.ts",
"start": "deno run --env --allow-net --allow-env --allow-read --allow-write src/main.ts",
"start": "deno run --allow-net --allow-env --allow-read --allow-write src/main.ts",
"test": "deno test --env --allow-env"
},
"compilerOptions": {
Expand Down

0 comments on commit 2ad1ba6

Please sign in to comment.