deploy Syncer to a2acloud Kubernetes
Some checks failed
build / image (push) Failing after 28s

This commit is contained in:
Syncer Deploy
2026-08-28 10:46:42 -03:00
commit e93c1b026f
72 changed files with 17680 additions and 0 deletions

23
apps/server/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "@syncer/server",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js"
},
"dependencies": {
"@syncer/engine": "0.0.0",
"@syncer/shared": "0.0.0",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.67.0.tar.gz"
},
"devDependencies": {
"@types/node": "^26.4.0",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
}
}