Update Scripts

This commit is contained in:
Joshua 2022-09-17 01:43:28 +02:00
parent aec51ae006
commit a82a47d189
2 changed files with 4 additions and 2 deletions

View file

@ -18,7 +18,6 @@ RUN vr funny
# Cache Dependencies and generate Routes
RUN vr cache
RUN vr routes
ENTRYPOINT [ "vr", "start"]

View file

@ -10,7 +10,9 @@ scripts:
cmd: deno cache --unstable ./src/index.ts
start:
desc: Start Dreamland in Prod Mode
cmd: deno run -A --unstable ./src/index.ts
cmd:
- vr gen
- deno run -A --unstable ./src/index.ts
funny:
desc: Send a Request to IPv4.party because it's funny
cmd: deno run --unstable --allow-net --no-check --no-prompt ./scripts/ipv4.ts
@ -22,3 +24,4 @@ scripts:
cmd:
- vr s3
- vr routes
generate: vr gen