1 Commits

Author SHA1 Message Date
275fb73896 Move executables to build/ dir
All checks were successful
CI / Test and lint (push) Successful in 17s
2024-12-09 18:58:17 +04:00
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,3 @@
.env
users.yaml
substr
build/

View File

@@ -2,7 +2,7 @@
"tasks": {
"dev": "deno run --allow-all --watch server.ts",
"server": "deno run --allow-all server.ts",
"compile": "deno compile --allow-all --include ./assets/ --output substr server.ts",
"compile": "deno compile --allow-all --include ./assets/ --output ./build/substr_x86_64-unknown-linux-gnu server.ts",
"test": "deno test --allow-read --allow-env"
},
"imports": {