Compare commits
17 Commits
zach/renam
...
main
Author | SHA1 | Date | |
---|---|---|---|
f06f0ce284 | |||
a412f3a194 | |||
80b21daa6b | |||
8bb3dcfcf2 | |||
673a2c356f | |||
944239523b | |||
f82059b995 | |||
3fec09627a | |||
6a22580f35 | |||
bc94d0c9aa | |||
e62a4a8e49 | |||
b773d39135 | |||
5d6045103b | |||
49ed5166a9 | |||
a4a139b420 | |||
116f0b30bf | |||
cdb4b8a475 |
@ -8,7 +8,7 @@ env:
|
|||||||
CERC_REGISTRY_BOND_ID: ${{ secrets.CICD_LACONIC_BOND_ID }}
|
CERC_REGISTRY_BOND_ID: ${{ secrets.CICD_LACONIC_BOND_ID }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
registry_publish:
|
cns_publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone project repository"
|
- name: "Clone project repository"
|
||||||
@ -22,7 +22,7 @@ jobs:
|
|||||||
- name: "Install registry CLI"
|
- name: "Install registry CLI"
|
||||||
run: |
|
run: |
|
||||||
npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
||||||
npm install -g @cerc-io/laconic-registry-cli@0.2.0
|
npm install -g @cerc-io/laconic-registry-cli@0.1.13
|
||||||
- name: "Install jq"
|
- name: "Install jq"
|
||||||
run: apt -y update && apt -y install jq
|
run: apt -y update && apt -y install jq
|
||||||
- name: "Publish Application Record"
|
- name: "Publish Application Record"
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
import withPWA from 'next-pwa';
|
||||||
const withPWA = require('next-pwa')({
|
|
||||||
dest: 'public',
|
|
||||||
})
|
|
||||||
|
|
||||||
module.exports = withPWA({
|
const config = {
|
||||||
env: {
|
env: {
|
||||||
CERC_TEST_WEBAPP_CONFIG1: process.env.CERC_TEST_WEBAPP_CONFIG1,
|
CERC_TEST_WEBAPP_CONFIG1: process.env.CERC_TEST_WEBAPP_CONFIG1,
|
||||||
CERC_TEST_WEBAPP_CONFIG2: process.env.CERC_TEST_WEBAPP_CONFIG2,
|
CERC_TEST_WEBAPP_CONFIG2: process.env.CERC_TEST_WEBAPP_CONFIG2,
|
||||||
CERC_WEBAPP_DEBUG: process.env.CERC_WEBAPP_DEBUG,
|
CERC_WEBAPP_DEBUG: process.env.CERC_WEBAPP_DEBUG,
|
||||||
},
|
}
|
||||||
})
|
};
|
||||||
|
|
||||||
|
const nextConfig = withPWA({ dest: 'public' })(config);
|
||||||
|
|
||||||
|
export default nextConfig;
|
2832
package-lock.json
generated
2832
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/test-progressive-web-app",
|
"name": "@cerc-io/test-progressive-web-app",
|
||||||
"version": "0.1.40",
|
"version": "0.1.53",
|
||||||
"repository": "https://git.vdb.to/cerc-io/test-progressive-web-app",
|
"repository": "https://git.vdb.to/cerc-io/test-progressive-web-app",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
@ -16,6 +16,6 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "17.0.4",
|
"@types/node": "17.0.4",
|
||||||
"@types/react": "17.0.38",
|
"@types/react": "17.0.38",
|
||||||
"typescript": "4.5.4"
|
"typescript": "^5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,15 +19,15 @@ rcd_app_version=$(jq -r '.version' package.json | sed 's/null//')
|
|||||||
|
|
||||||
cat <<EOF > "$CONFIG_FILE"
|
cat <<EOF > "$CONFIG_FILE"
|
||||||
services:
|
services:
|
||||||
registry:
|
cns:
|
||||||
rpcEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:26657}'
|
restEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:1317}'
|
||||||
gqlEndpoint: '${CERC_REGISTRY_GQL_ENDPOINT:-http://console.laconic.com:9473/api}'
|
gqlEndpoint: '${CERC_REGISTRY_GQL_ENDPOINT:-http://console.laconic.com:9473/api}'
|
||||||
chainId: ${CERC_REGISTRY_CHAIN_ID:-laconic_9000-1}
|
chainId: ${CERC_REGISTRY_CHAIN_ID:-laconic_9000-1}
|
||||||
gas: 950000
|
gas: 2950000
|
||||||
fees: 200000photon
|
fees: 400000aphoton
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
next_ver=$(laconic -c $CONFIG_FILE registry record list --type ApplicationRecord --all --name "$rcd_name" 2>/dev/null | jq -r -s ".[] | sort_by(.createTime) | reverse | [ .[] | select(.bondId == \"$CERC_REGISTRY_BOND_ID\") ] | .[0].attributes.version" | awk -F. -v OFS=. '{$NF += 1 ; print}')
|
next_ver=$(laconic -c $CONFIG_FILE cns record list --type ApplicationRecord --all --name "$rcd_name" 2>/dev/null | jq -r -s ".[] | sort_by(.createTime) | reverse | [ .[] | select(.bondId == \"$CERC_REGISTRY_BOND_ID\") ] | .[0].attributes.version" | awk -F. -v OFS=. '{$NF += 1 ; print}')
|
||||||
|
|
||||||
if [ -z "$next_ver" ] || [ "1" == "$next_ver" ]; then
|
if [ -z "$next_ver" ] || [ "1" == "$next_ver" ]; then
|
||||||
next_ver=0.0.1
|
next_ver=0.0.1
|
||||||
@ -51,19 +51,19 @@ EOF
|
|||||||
|
|
||||||
|
|
||||||
cat $RECORD_FILE
|
cat $RECORD_FILE
|
||||||
RECORD_ID=$(laconic -c $CONFIG_FILE registry record publish --filename $RECORD_FILE --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} | jq -r '.id')
|
RECORD_ID=$(laconic -c $CONFIG_FILE cns record publish --filename $RECORD_FILE --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} | jq -r '.id')
|
||||||
echo $RECORD_ID
|
echo $RECORD_ID
|
||||||
|
|
||||||
if [ -z "$CERC_REGISTRY_APP_LRN" ]; then
|
if [ -z "$CERC_REGISTRY_APP_CRN" ]; then
|
||||||
authority=$(echo "$rcd_name" | cut -d'/' -f1 | sed 's/@//')
|
authority=$(echo "$rcd_name" | cut -d'/' -f1 | sed 's/@//')
|
||||||
app=$(echo "$rcd_name" | cut -d'/' -f2-)
|
app=$(echo "$rcd_name" | cut -d'/' -f2-)
|
||||||
CERC_REGISTRY_APP_LRN="lrn://$authority/applications/$app"
|
CERC_REGISTRY_APP_CRN="crn://$authority/applications/$app"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
laconic -c $CONFIG_FILE registry name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_LRN@${rcd_app_version}" "$RECORD_ID"
|
laconic -c $CONFIG_FILE cns name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_CRN@${rcd_app_version}" "$RECORD_ID"
|
||||||
laconic -c $CONFIG_FILE registry name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_LRN@${CERC_REPO_REF}" "$RECORD_ID"
|
laconic -c $CONFIG_FILE cns name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_CRN@${CERC_REPO_REF}" "$RECORD_ID"
|
||||||
if [ "true" == "$CERC_IS_LATEST_RELEASE" ]; then
|
if [ "true" == "$CERC_IS_LATEST_RELEASE" ]; then
|
||||||
laconic -c $CONFIG_FILE registry name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_LRN" "$RECORD_ID"
|
laconic -c $CONFIG_FILE cns name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_CRN" "$RECORD_ID"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -f $RECORD_FILE $CONFIG_FILE
|
rm -f $RECORD_FILE $CONFIG_FILE
|
||||||
|
@ -10,23 +10,23 @@ rcd_app_version=$(jq -r '.version' package.json | sed 's/null//')
|
|||||||
|
|
||||||
cat <<EOF > "$CONFIG_FILE"
|
cat <<EOF > "$CONFIG_FILE"
|
||||||
services:
|
services:
|
||||||
registry:
|
cns:
|
||||||
rpcEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:26657}'
|
restEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:1317}'
|
||||||
gqlEndpoint: '${CERC_REGISTRY_GQL_ENDPOINT:-http://console.laconic.com:9473/api}'
|
gqlEndpoint: '${CERC_REGISTRY_GQL_ENDPOINT:-http://console.laconic.com:9473/api}'
|
||||||
chainId: ${CERC_REGISTRY_CHAIN_ID:-laconic_9000-1}
|
chainId: ${CERC_REGISTRY_CHAIN_ID:-laconic_9000-1}
|
||||||
gas: 950000
|
gas: 2950000
|
||||||
fees: 200000photon
|
fees: 400000aphoton
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [ -z "$CERC_REGISTRY_APP_LRN" ]; then
|
if [ -z "$CERC_REGISTRY_APP_CRN" ]; then
|
||||||
authority=$(echo "$rcd_name" | cut -d'/' -f1 | sed 's/@//')
|
authority=$(echo "$rcd_name" | cut -d'/' -f1 | sed 's/@//')
|
||||||
app=$(echo "$rcd_name" | cut -d'/' -f2-)
|
app=$(echo "$rcd_name" | cut -d'/' -f2-)
|
||||||
CERC_REGISTRY_APP_LRN="lrn://$authority/applications/$app"
|
CERC_REGISTRY_APP_CRN="crn://$authority/applications/$app"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
APP_RECORD=$(laconic -c $CONFIG_FILE registry name resolve "$CERC_REGISTRY_APP_LRN" | jq '.[0]')
|
APP_RECORD=$(laconic -c $CONFIG_FILE cns name resolve "$CERC_REGISTRY_APP_CRN" | jq '.[0]')
|
||||||
if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
|
if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
|
||||||
echo "No record found for $CERC_REGISTRY_APP_LRN."
|
echo "No record found for $CERC_REGISTRY_APP_CRN."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -35,9 +35,9 @@ record:
|
|||||||
type: ApplicationDeploymentRequest
|
type: ApplicationDeploymentRequest
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
name: "$rcd_name@$rcd_app_version"
|
name: "$rcd_name@$rcd_app_version"
|
||||||
application: "$CERC_REGISTRY_APP_LRN@$rcd_app_version"
|
application: "$CERC_REGISTRY_APP_CRN@$rcd_app_version"
|
||||||
dns: "$CERC_REGISTRY_DEPLOYMENT_SHORT_HOSTNAME"
|
dns: "$CERC_REGISTRY_DEPLOYMENT_SHORT_HOSTNAME"
|
||||||
deployment: "$CERC_REGISTRY_DEPLOYMENT_LRN"
|
deployment: "$CERC_REGISTRY_DEPLOYMENT_CRN"
|
||||||
config:
|
config:
|
||||||
env:
|
env:
|
||||||
CERC_WEBAPP_DEBUG: "$rcd_app_version"
|
CERC_WEBAPP_DEBUG: "$rcd_app_version"
|
||||||
@ -48,7 +48,7 @@ record:
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat $RECORD_FILE
|
cat $RECORD_FILE
|
||||||
RECORD_ID=$(laconic -c $CONFIG_FILE registry record publish --filename $RECORD_FILE --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} | jq -r '.id')
|
RECORD_ID=$(laconic -c $CONFIG_FILE cns record publish --filename $RECORD_FILE --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} | jq -r '.id')
|
||||||
echo $RECORD_ID
|
echo $RECORD_ID
|
||||||
|
|
||||||
rm -f $RECORD_FILE $CONFIG_FILE
|
rm -f $RECORD_FILE $CONFIG_FILE
|
||||||
|
@ -1,20 +1,26 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es5",
|
|
||||||
"lib": ["dom", "dom.iterable", "esnext"],
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "bundler",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"incremental": true
|
"incremental": true,
|
||||||
|
"plugins": [
|
||||||
|
{
|
||||||
|
"name": "next"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": {
|
||||||
|
"@/*": ["./src/*"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||||
"exclude": ["node_modules"]
|
"exclude": ["node_modules"]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user