Compare commits

...

19 Commits

Author SHA1 Message Date
f06f0ce284 Bump
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m24s
2024-08-05 23:39:58 -05:00
a412f3a194 Bump
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m18s
2024-08-05 23:03:22 -05:00
80b21daa6b Bump
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m18s
2024-08-05 22:36:04 -05:00
8bb3dcfcf2 Bump
Some checks failed
Publish ApplicationRecord to Registry / cns_publish (release) Failing after 1m1s
2024-08-05 22:25:16 -05:00
673a2c356f Bump
Some checks failed
Publish ApplicationRecord to Registry / cns_publish (release) Failing after 1m2s
2024-08-05 22:16:59 -05:00
944239523b Bump 2024-08-05 22:15:40 -05:00
f82059b995 Bump
Some checks failed
Publish ApplicationRecord to Registry / cns_publish (release) Has been cancelled
2024-08-05 22:08:20 -05:00
3fec09627a Bump
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m22s
2024-08-05 21:51:55 -05:00
6a22580f35 Bump
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m19s
2024-07-30 23:44:19 -05:00
bc94d0c9aa Bump
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m22s
2024-07-30 22:49:23 -05:00
e62a4a8e49 Bump version for deployment
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m22s
2024-07-27 18:50:02 +00:00
b773d39135 Bump version
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m19s
2024-07-27 08:38:23 -06:00
5d6045103b Try updating dependencies 2024-07-27 08:37:41 -06:00
49ed5166a9 Bump version for deployment
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m18s
2024-07-25 17:57:35 +00:00
a4a139b420 Try pinning registry cli at a working older version 2024-07-25 17:56:32 +00:00
116f0b30bf Bump version for deployment
Some checks failed
Publish ApplicationRecord to Registry / cns_publish (release) Has been cancelled
2024-07-25 17:45:35 +00:00
cdb4b8a475 Switch to next.config.mjs (#15)
Reviewed-on: #15
2024-07-25 17:19:46 +00:00
05d0d29e61 Test deployment
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m21s
2024-07-12 17:43:57 +00:00
caa2be6478 Test deployer with private: true removed
All checks were successful
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m20s
2024-07-12 17:16:28 +00:00
7 changed files with 1782 additions and 1096 deletions

View File

@ -22,7 +22,7 @@ jobs:
- name: "Install registry CLI"
run: |
npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
npm install -g @cerc-io/laconic-registry-cli
npm install -g @cerc-io/laconic-registry-cli@0.1.13
- name: "Install jq"
run: apt -y update && apt -y install jq
- name: "Publish Application Record"

View File

@ -1,12 +1,13 @@
/** @type {import('next').NextConfig} */
const withPWA = require('next-pwa')({
dest: 'public',
})
import withPWA from 'next-pwa';
module.exports = withPWA({
const config = {
env: {
CERC_TEST_WEBAPP_CONFIG1: process.env.CERC_TEST_WEBAPP_CONFIG1,
CERC_TEST_WEBAPP_CONFIG2: process.env.CERC_TEST_WEBAPP_CONFIG2,
CERC_WEBAPP_DEBUG: process.env.CERC_WEBAPP_DEBUG,
},
})
}
};
const nextConfig = withPWA({ dest: 'public' })(config);
export default nextConfig;

2832
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,6 @@
{
"private": true,
"name": "@cerc-io/test-progressive-web-app",
"version": "0.1.38",
"version": "0.1.53",
"repository": "https://git.vdb.to/cerc-io/test-progressive-web-app",
"scripts": {
"dev": "next dev",
@ -17,6 +16,6 @@
"devDependencies": {
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"typescript": "4.5.4"
"typescript": "^5"
}
}

View File

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

View File

@ -14,8 +14,8 @@ services:
restEndpoint: '${CERC_REGISTRY_REST_ENDPOINT:-http://console.laconic.com:1317}'
gqlEndpoint: '${CERC_REGISTRY_GQL_ENDPOINT:-http://console.laconic.com:9473/api}'
chainId: ${CERC_REGISTRY_CHAIN_ID:-laconic_9000-1}
gas: 950000
fees: 200000aphoton
gas: 2950000
fees: 400000aphoton
EOF
if [ -z "$CERC_REGISTRY_APP_CRN" ]; then

View File

@ -1,20 +1,26 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"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"]
}