My personal website. Now written from scratch! arctictherogue.xyz
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add deploy function for deno

Arctic f96f286b ac0f4dcc

+5
+1
.gitignore
··· 2 2 _cache 3 3 .env 4 4 .idea 5 + wrangler.toml
+4
deno.json
··· 39 39 "description": "Build the site for production", 40 40 "command": "deno task lume" 41 41 }, 42 + "deploy": { 43 + "description": "Build and push to Cloudflare Workers", 44 + "command": "deno task lume && deno run -A npm:wrangler deploy" 45 + }, 42 46 "serve": { 43 47 "description": "Run and serve the site for development", 44 48 "command": "deno task lume -s"