init edge tunnel

This commit is contained in:
zizifn
2022-12-04 03:42:48 +08:00
committed by zizifn
parent 6a3b43efcb
commit d4937e4106
52 changed files with 22530 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "deno-bypass",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/deno-bypass/src",
"projectType": "application",
"targets": {
"run": {
"executor": "nx:run-commands",
"options": {
"command": "deno run --allow-net apps/deno-bypass/src/bypass.ts "
}
},
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "deno run --allow-net --watch apps/deno-bypass/src/bypass.ts "
}
}
},
"tags": []
}