forked from jsnbuchanan/crowd-funder-for-time-pwa
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:
@@ -1,6 +1,21 @@
|
|||||||
{
|
{
|
||||||
"appId": "com.brownspank.timesafari",
|
"appId": "app.timesafari",
|
||||||
"appName": "TimeSafari",
|
"appName": "TimeSafari",
|
||||||
"webDir": "dist",
|
"webDir": "dist",
|
||||||
"bundledWebRuntime": false
|
"bundledWebRuntime": false,
|
||||||
|
"server": {
|
||||||
|
"cleartext": true
|
||||||
|
},
|
||||||
|
"plugins": {
|
||||||
|
"App": {
|
||||||
|
"appUrlOpen": {
|
||||||
|
"handlers": [
|
||||||
|
{
|
||||||
|
"url": "timesafari://*",
|
||||||
|
"autoVerify": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
JWT Creation & Verification
|
JWT Creation & Verification
|
||||||
|
|
||||||
To run this in a script, see ./openssl_signing_console.sh
|
To run this in a script, see /scripts/openssl_signing_console.sh
|
||||||
|
|
||||||
Prerequisites: openssl, jq
|
Prerequisites: openssl, jq
|
||||||
|
|
||||||
@@ -4,9 +4,9 @@
|
|||||||
#
|
#
|
||||||
# Prerequisites: openssl, jq
|
# Prerequisites: openssl, jq
|
||||||
#
|
#
|
||||||
# Usage: source ./openssl_signing_console.sh
|
# Usage: source /scripts/openssl_signing_console.sh
|
||||||
#
|
#
|
||||||
# For a more complete explanation, see ./openssl_signing_console.rst
|
# For a more complete explanation, see /doc/openssl_signing_console.rst
|
||||||
|
|
||||||
|
|
||||||
# Generate a key and extract the public part
|
# Generate a key and extract the public part
|
||||||
Reference in New Issue
Block a user