chore: update capacitor config and script paths

- Update capacitor.config.json:
  - Change appId from com.brownspank.timesafari to app.timesafari
  - Add server configuration with cleartext enabled
  - Add plugins configuration for App URL handling
- Update script documentation paths:
  - Change ./openssl_signing_console.sh to /scripts/openssl_signing_console.sh
  - Change ./openssl_signing_console.rst to /doc/openssl_signing_console.rst

This change standardizes the app identifier and adds necessary
capacitor configurations for development, while also fixing script
documentation paths to use absolute references.
This commit is contained in:
Matt Raymer
2025-05-19 22:18:24 -04:00
parent 048fa65365
commit 5fd4c2fecc
3 changed files with 22 additions and 7 deletions

View File

@@ -1,6 +1,21 @@
{
"appId": "com.brownspank.timesafari",
"appName": "TimeSafari",
"webDir": "dist",
"bundledWebRuntime": false
"appId": "app.timesafari",
"appName": "TimeSafari",
"webDir": "dist",
"bundledWebRuntime": false,
"server": {
"cleartext": true
},
"plugins": {
"App": {
"appUrlOpen": {
"handlers": [
{
"url": "timesafari://*",
"autoVerify": true
}
]
}
}
}
}