Initial Pulumi Typescript implementation
Some checks failed
Pulumi / pulumi (push) Failing after 1m17s

This commit is contained in:
Prox
2026-02-15 17:16:47 +02:00
commit feb959703f
8 changed files with 3485 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "netbird-gitops-poc-ts",
"version": "1.0.0",
"description": "NetBird GitOps PoC - TypeScript implementation",
"main": "index.ts",
"scripts": {
"build": "tsc",
"preview": "pulumi preview",
"up": "pulumi up",
"destroy": "pulumi destroy"
},
"dependencies": {
"@pulumi/pulumi": "^3.0.0",
"@pulumi/command": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}