Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
6909db61f6 | |||
35998ad7fc | |||
18b2ee5aed | |||
d723c31cd2 | |||
e69b951d28 |
@ -1,31 +1,76 @@
|
|||||||
name: Publish ApplicationRecord to Registry
|
name: Publish ApplicationRecord to Registry
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CERC_REGISTRY_USER_KEY: ${{ secrets.CICD_LACONIC_USER_KEY }}
|
DOCKER_HOST: unix:///var/run/dind.sock
|
||||||
CERC_REGISTRY_BOND_ID: ${{ secrets.CICD_LACONIC_BOND_ID }}
|
|
||||||
|
jobs:
|
||||||
jobs:
|
setup_deps:
|
||||||
cns_publish:
|
name: "Install project and dependencies"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone project repository"
|
- name: "Clone project repository"
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Use Node.js
|
|
||||||
uses: actions/setup-node@v3
|
# At present the stock setup-python action fails on Linux/aarch64
|
||||||
with:
|
# Conditional steps below workaroud this by using deadsnakes for that case only
|
||||||
node-version: 18
|
- name: "Install Python for ARM on Linux"
|
||||||
- name: "Enable Yarn"
|
if: ${{ runner.arch == 'arm64' && runner.os == 'Linux' }}
|
||||||
run: corepack enable
|
uses: deadsnakes/action@v3.0.1
|
||||||
- name: "Install registry CLI"
|
with:
|
||||||
run: |
|
python-version: '3.8'
|
||||||
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
|
- name: "Install Python cases other than ARM on Linux"
|
||||||
- name: "Install jq"
|
if: ${{ ! (runner.arch == 'arm64' && runner.os == 'Linux') }}
|
||||||
run: apt -y update && apt -y install jq
|
uses: actions/setup-python@v4
|
||||||
- name: "Publish Application Record"
|
with:
|
||||||
run: scripts/publish-app-record.sh
|
python-version: '3.8'
|
||||||
- name: "Request Deployment"
|
|
||||||
run: scripts/request-app-deployment.sh
|
- name: "Print Python version"
|
||||||
|
run: python3 --version
|
||||||
|
|
||||||
|
- name: "Install Stack Orchestrator"
|
||||||
|
run: |
|
||||||
|
mkdir -p /opt/laconic
|
||||||
|
curl -o /opt/laconic/quick-install-linux.sh https://raw.githubusercontent.com/cerc-io/stack-orchestrator/main/scripts/quick-install-linux.sh
|
||||||
|
chmod +x /opt/laconic/quick-install-linux.sh
|
||||||
|
CERC_SO_INSTALL_SKIP_PACKAGES=true /opt/laconic/quick-install-linux.sh -y
|
||||||
|
source ~/.profile
|
||||||
|
laconic-so version
|
||||||
|
|
||||||
|
- name: "Start dockerd" # Also needed until we can incorporate into the executor
|
||||||
|
run: |
|
||||||
|
dockerd -H $DOCKER_HOST --userland-proxy=false &
|
||||||
|
sleep 5
|
||||||
|
|
||||||
|
- name: "Use laconic-so"
|
||||||
|
run: |
|
||||||
|
source ~/.profile
|
||||||
|
laconic-so --stack uniswap-urbit-app setup-repositories --pull
|
||||||
|
laconic-so --stack uniswap-urbit-app build-containers
|
||||||
|
# laconic-so --stack uniswap-urbit-app deploy init --output uniswap-urbit-app-spec.yml
|
||||||
|
# edit the above .yml file
|
||||||
|
# laconic-so --stack uniswap-urbit-app deploy create --spec-file uniswap-urbit-app-spec.yml --deployment-dir uniswap-urbit-app-deployment
|
||||||
|
# edit the config file
|
||||||
|
# laconic-so deployment --dir uniswap-urbit-app-deployment start
|
||||||
|
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
- name: "Install Yarn"
|
||||||
|
run: npm install -g yarn
|
||||||
|
- name: "Install registry CLI"
|
||||||
|
run: |
|
||||||
|
npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
||||||
|
yarn global add @cerc-io/laconic-registry-cli
|
||||||
|
- name: "Install jq"
|
||||||
|
run: apt -y update && apt -y install jq
|
||||||
|
- name: "Publish Record"
|
||||||
|
env:
|
||||||
|
CERC_REGISTRY_USER_KEY: ${{ secrets.CICD_LACONIC_USER_KEY }}
|
||||||
|
CERC_REGISTRY_BOND_ID: ${{ secrets.CICD_LACONIC_BOND_ID }}
|
||||||
|
CERC_REGISTRY_APP_CRN: "crn://urbit/applications/uniswap"
|
||||||
|
run: scripts/publish-app-record.sh
|
||||||
|
@ -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
2828
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
43
package.json
43
package.json
@ -1,21 +1,22 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/test-progressive-web-app",
|
"private": true,
|
||||||
"version": "0.1.53",
|
"name": "@zramsay/test-progressive-web-app",
|
||||||
"repository": "https://git.vdb.to/cerc-io/test-progressive-web-app",
|
"version": "0.1.6",
|
||||||
"scripts": {
|
"repository": "https://git.vdb.to/zramsay/test-progressive-web-app/",
|
||||||
"dev": "next dev",
|
"scripts": {
|
||||||
"build": "next build",
|
"dev": "next dev",
|
||||||
"start": "next start"
|
"build": "next build",
|
||||||
},
|
"start": "next start"
|
||||||
"dependencies": {
|
},
|
||||||
"next": "latest",
|
"dependencies": {
|
||||||
"next-pwa": "^5.6.0",
|
"next": "latest",
|
||||||
"react": "^18.2.0",
|
"next-pwa": "^5.6.0",
|
||||||
"react-dom": "^18.2.0"
|
"react": "^18.2.0",
|
||||||
},
|
"react-dom": "^18.2.0"
|
||||||
"devDependencies": {
|
},
|
||||||
"@types/node": "17.0.4",
|
"devDependencies": {
|
||||||
"@types/react": "17.0.38",
|
"@types/node": "17.0.4",
|
||||||
"typescript": "^5"
|
"@types/react": "17.0.38",
|
||||||
}
|
"typescript": "4.5.4"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
@ -5,7 +5,7 @@ set -e
|
|||||||
RECORD_FILE=tmp.rf.$$
|
RECORD_FILE=tmp.rf.$$
|
||||||
CONFIG_FILE=`mktemp`
|
CONFIG_FILE=`mktemp`
|
||||||
|
|
||||||
CERC_APP_TYPE=${CERC_APP_TYPE:-"webapp/next"}
|
CERC_APP_TYPE=${CERC_APP_TYPE:-"webapp"}
|
||||||
CERC_REPO_REF=${CERC_REPO_REF:-${GITHUB_SHA:-`git log -1 --format="%H"`}}
|
CERC_REPO_REF=${CERC_REPO_REF:-${GITHUB_SHA:-`git log -1 --format="%H"`}}
|
||||||
CERC_IS_LATEST_RELEASE=${CERC_IS_LATEST_RELEASE:-"true"}
|
CERC_IS_LATEST_RELEASE=${CERC_IS_LATEST_RELEASE:-"true"}
|
||||||
|
|
||||||
@ -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: 550000
|
||||||
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}')
|
||||||
@ -42,8 +42,7 @@ record:
|
|||||||
homepage: "$rcd_homepage"
|
homepage: "$rcd_homepage"
|
||||||
license: "$rcd_license"
|
license: "$rcd_license"
|
||||||
author: "$rcd_author"
|
author: "$rcd_author"
|
||||||
repository:
|
repository: "$rcd_repository"
|
||||||
- "$rcd_repository"
|
|
||||||
repository_ref: "$CERC_REPO_REF"
|
repository_ref: "$CERC_REPO_REF"
|
||||||
app_version: "$rcd_app_version"
|
app_version: "$rcd_app_version"
|
||||||
app_type: "$CERC_APP_TYPE"
|
app_type: "$CERC_APP_TYPE"
|
||||||
@ -54,16 +53,13 @@ cat $RECORD_FILE
|
|||||||
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')
|
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_CRN" ]; then
|
if [ -n "$CERC_REGISTRY_APP_CRN" ]; then
|
||||||
authority=$(echo "$rcd_name" | cut -d'/' -f1 | sed 's/@//')
|
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"
|
||||||
app=$(echo "$rcd_name" | cut -d'/' -f2-)
|
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"
|
||||||
CERC_REGISTRY_APP_CRN="crn://$authority/applications/$app"
|
if [ "true" == "$CERC_IS_LATEST_RELEASE" ]; then
|
||||||
fi
|
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"
|
||||||
|
laconic -c $CONFIG_FILE cns name set --user-key "${CERC_REGISTRY_USER_KEY}" --bond-id ${CERC_REGISTRY_BOND_ID} "$CERC_REGISTRY_APP_CRN@latest" "$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"
|
fi
|
||||||
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
|
|
||||||
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
|
||||||
|
@ -1,54 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RECORD_FILE=tmp.rf.$$
|
|
||||||
CONFIG_FILE=`mktemp`
|
|
||||||
|
|
||||||
rcd_name=$(jq -r '.name' package.json | sed 's/null//' | sed 's/^@//')
|
|
||||||
rcd_app_version=$(jq -r '.version' package.json | sed 's/null//')
|
|
||||||
|
|
||||||
cat <<EOF > "$CONFIG_FILE"
|
|
||||||
services:
|
|
||||||
cns:
|
|
||||||
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: 2950000
|
|
||||||
fees: 400000aphoton
|
|
||||||
EOF
|
|
||||||
|
|
||||||
if [ -z "$CERC_REGISTRY_APP_CRN" ]; then
|
|
||||||
authority=$(echo "$rcd_name" | cut -d'/' -f1 | sed 's/@//')
|
|
||||||
app=$(echo "$rcd_name" | cut -d'/' -f2-)
|
|
||||||
CERC_REGISTRY_APP_CRN="crn://$authority/applications/$app"
|
|
||||||
fi
|
|
||||||
|
|
||||||
APP_RECORD=$(laconic -c $CONFIG_FILE cns name resolve "$CERC_REGISTRY_APP_CRN" | jq '.[0]')
|
|
||||||
if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
|
|
||||||
echo "No record found for $CERC_REGISTRY_APP_CRN."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cat <<EOF | sed '/.*: ""$/d' > "$RECORD_FILE"
|
|
||||||
record:
|
|
||||||
type: ApplicationDeploymentRequest
|
|
||||||
version: 1.0.0
|
|
||||||
name: "$rcd_name@$rcd_app_version"
|
|
||||||
application: "$CERC_REGISTRY_APP_CRN@$rcd_app_version"
|
|
||||||
dns: "$CERC_REGISTRY_DEPLOYMENT_SHORT_HOSTNAME"
|
|
||||||
deployment: "$CERC_REGISTRY_DEPLOYMENT_CRN"
|
|
||||||
config:
|
|
||||||
env:
|
|
||||||
CERC_WEBAPP_DEBUG: "$rcd_app_version"
|
|
||||||
meta:
|
|
||||||
note: "Added by CI @ `date`"
|
|
||||||
repository: "`git remote get-url origin`"
|
|
||||||
repository_ref: "${GITHUB_SHA:-`git log -1 --format="%H"`}"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat $RECORD_FILE
|
|
||||||
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
|
|
||||||
|
|
||||||
rm -f $RECORD_FILE $CONFIG_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"]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user