Skip to content

Commit

Permalink
🔨 Add location to start script
Browse files Browse the repository at this point in the history
  • Loading branch information
toridoriv committed Oct 10, 2023
1 parent 96b2be1 commit 40144de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import "https://deno.land/std@0.203.0/dotenv/load.ts";

import type { DenonConfig } from "@deps";

const config: DenonConfig = {
scripts: {
start: {
cmd: "app/main.ts",
cmd: `deno run --location ${Deno.env.get("LOCATION")} app/main.ts`,
desc: "Run my webserver",
watch: true,
},
Expand Down

0 comments on commit 40144de

Please sign in to comment.