6 lines
174 B
Bash
Executable file
6 lines
174 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
mkdir out 2>/dev/null || true
|
|
deno run ./default.ts > out/default.conf
|
|
deno run ./relay.ts > out/relay.conf
|
|
deno run ./jetstream.ts > out/jetstream.conf
|