feat: add Clack-based local dev helper

Adds a cross-platform oc-dev menu for web, mobile, Electron, VS Code, and release workflows
Supports user-level config for remote deploys, iOS device preferences, and maintainer-only release tools
Ports local deploy flows from Bash snippets to Node-native operations
This commit is contained in:
Bohdan Triapitsyn
2026-07-01 13:25:43 +03:00
parent 61a4a23add
commit 73c9431883
4 changed files with 637 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"ios": {
"deviceName": "iPhone Example",
"useXcodeBeta": false,
"xcodeAppName": "Xcode"
},
"features": {
"releaseTools": false
},
"remoteDeployments": [
{
"id": "example-api",
"label": "example API-only",
"host": "example-host",
"port": 3002,
"dir": "testing-dev",
"apiOnly": true
},
{
"id": "example-ui",
"label": "example with UI",
"host": "example-host",
"port": 3002,
"dir": "testing-dev",
"apiOnly": false
}
]
}