Compare commits

..

No commits in common. "main" and "dboreham/use-npm" have entirely different histories.

7 changed files with 1094 additions and 1780 deletions

View File

@ -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.1.13 npm install -g @cerc-io/laconic-registry-cli
- 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"

View File

@ -1,13 +1,12 @@
import withPWA from 'next-pwa'; /** @type {import('next').NextConfig} */
const withPWA = require('next-pwa')({
dest: 'public',
})
const config = { module.exports = withPWA({
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;

2828
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,7 @@
{ {
"private": true,
"name": "@cerc-io/test-progressive-web-app", "name": "@cerc-io/test-progressive-web-app",
"version": "0.1.53", "version": "0.1.36",
"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 +17,6 @@
"devDependencies": { "devDependencies": {
"@types/node": "17.0.4", "@types/node": "17.0.4",
"@types/react": "17.0.38", "@types/react": "17.0.38",
"typescript": "^5" "typescript": "4.5.4"
} }
} }

View File

@ -23,8 +23,8 @@ services:
restEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:1317}' 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: 2950000 gas: 950000
fees: 400000aphoton fees: 200000aphoton
EOF EOF
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}') 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}')

View File

@ -14,8 +14,8 @@ services:
restEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:1317}' 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: 2950000 gas: 950000
fees: 400000aphoton fees: 200000aphoton
EOF EOF
if [ -z "$CERC_REGISTRY_APP_CRN" ]; then if [ -z "$CERC_REGISTRY_APP_CRN" ]; then

View File

@ -1,26 +1,20 @@
{ {
"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": "bundler", "moduleResolution": "node",
"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", ".next/types/**/*.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }