9 lines
198 B
Text
9 lines
198 B
Text
|
#!/bin/sh
|
||
|
#;proxy=http://localhost:11001
|
||
|
export deno=/mnt/data/app/deno
|
||
|
export junkhost=127.0.0.1
|
||
|
export junkport=11001
|
||
|
|
||
|
$deno task build
|
||
|
exec $deno run --allow-read --allow-net --allow-env main.ts
|