dreamland/scripts.yml
2022-10-12 20:40:03 +02:00

37 lines
1,014 B
YAML

scripts:
dev:
desc: Run Dreamland in Dev Mode
cmd: deno run -A https://deno.land/x/denon/denon.ts run -A --unstable ./index.ts
cache:
desc: Cache all Dependencies
cmd: deno cache --unstable --reload ./deps.ts
start:
desc: Start Dreamland in Prod Mode
cmd:
- vr gen
- deno run -A --unstable ./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
generate: vr gen
gen:
desc: Run all the Commands that Generate Files
cmd:
- vr s3
- vr routes
- vr download
routes:
desc: Generate the Routes used for the Project
cmd: deno run --unstable --allow-write --allow-read --no-check --no-prompt --allow-env ./scripts/routes.ts
s3:
desc: Generate S3 Routes
cmd: deno run --unstable -A --no-check --no-prompt ./scripts/s3.ts
download:
desc: Download Files from S3
cmd: deno run --unstable -A ./scripts/download.ts