move scripts around
This commit is contained in:
parent
e0680f06b2
commit
71ae88f152
1 changed files with 14 additions and 8 deletions
22
scripts.yml
22
scripts.yml
|
@ -2,26 +2,32 @@ scripts:
|
||||||
dev:
|
dev:
|
||||||
desc: Run Dreamland in Dev Mode
|
desc: Run Dreamland in Dev Mode
|
||||||
cmd: deno run -A https://deno.land/x/denon/denon.ts run -A --unstable ./src/index.ts
|
cmd: deno run -A https://deno.land/x/denon/denon.ts run -A --unstable ./src/index.ts
|
||||||
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
|
|
||||||
cache:
|
cache:
|
||||||
desc: Cache all Dependencies
|
desc: Cache all Dependencies
|
||||||
cmd: deno cache --unstable ./src/index.ts
|
cmd: deno cache --unstable --reload ./deps.ts
|
||||||
|
|
||||||
start:
|
start:
|
||||||
desc: Start Dreamland in Prod Mode
|
desc: Start Dreamland in Prod Mode
|
||||||
cmd:
|
cmd:
|
||||||
- vr gen
|
- vr gen
|
||||||
- deno run -A --unstable ./src/index.ts
|
- deno run -A --unstable ./src/index.ts
|
||||||
|
|
||||||
funny:
|
funny:
|
||||||
desc: Send a Request to IPv4.party because it's 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
|
cmd: deno run --unstable --allow-net --no-check --no-prompt ./scripts/ipv4.ts
|
||||||
s3:
|
|
||||||
desc: Test S3 Module
|
generate: vr gen
|
||||||
cmd: deno run --unstable -A --no-check --no-prompt ./scripts/s3.ts
|
|
||||||
gen:
|
gen:
|
||||||
desc: Run all the Commands that Generate Files
|
desc: Run all the Commands that Generate Files
|
||||||
cmd:
|
cmd:
|
||||||
- vr s3
|
- vr s3
|
||||||
- vr routes
|
- vr routes
|
||||||
generate: vr gen
|
|
||||||
|
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: Test S3 Module
|
||||||
|
cmd: deno run --unstable -A --no-check --no-prompt ./scripts/s3.ts
|
||||||
|
|
Loading…
Add table
Reference in a new issue