chore: Set up Deno project with Docker, environment configuration, and basic server

This commit is contained in:
Mauricio Siu
2025-02-23 20:13:56 -06:00
parent d525138542
commit 818be08214
8 changed files with 106 additions and 21 deletions

View File

@@ -1,9 +1,11 @@
{
"tasks": {
"dev": "deno run --watch main.ts",
"build": "deno run build.ts"
"start": "deno run --allow-read --allow-env --allow-net main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
"@std/assert": "jsr:@std/assert@1",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/http": "jsr:@std/http@^1.0.8"
}
}