feat(app): add nginx inage source

This commit is contained in:
2026-02-24 00:47:25 +03:00
parent f974d5361e
commit 5a7d23f7e3
18 changed files with 215 additions and 68 deletions

View File

@@ -1,46 +1,53 @@
{
"folders": [
{
"path": "."
}
"path": ".",
},
],
"settings": {
"haxe.executable": {
"path": "/home/shmyga/sdk/haxe/4.2.5/haxe",
"env": {
"HAXE_STD_PATH": "/home/shmyga/sdk/haxe/4.2.5/std"
}
"HAXE_STD_PATH": "/home/shmyga/sdk/haxe/4.2.5/std",
},
},
"haxe.configurations": [["build/app/flash/haxe/debug.hxml"]],
"haxe.displayServer": {
"arguments": [
//"-v"
]
}
],
},
},
"extensions": {
"recommendations": ["nadako.vshaxe"]
"recommendations": ["nadako.vshaxe"],
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"args": ["app:flash:test"],
"name": "app:flash:test",
"args": ["${input:target}"],
"name": "${input:target}",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node"
"type": "node",
"consoleTitle": "${input:target}",
},
{
"args": ["server:cpp:test"],
"name": "server:cpp:test",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node"
}
],
"compounds": []
}
"inputs": [
{
"id": "target",
"description": "Please enter target name",
"options": [
"app:flash:test",
"app:html5:test",
"app:linux:test",
"server:cpp:test",
],
"type": "pickString",
"default": "app:flash:test",
},
],
"compounds": [],
},
}