mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-21 22:27:57 +00:00
fix: update URLs and fix workflow authentication
- Replace pezkuwi.js.org with pezkuwichain.app domain - Replace jacogr/pezkuwi-js-apps with pezkuwichain/pezkuwi-apps Docker image - Fix GH_PAT_BOT secret issue by using GITHUB_TOKEN - Update GitHub org references from pezkuwi-js to pezkuwichain - Update issue template to point to docs.pezkuwichain.io Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -3,7 +3,7 @@ title: Unavailable chain endpoints {{ date | date('ddd, MMM D YYYY, h:mm:ss a')
|
||||
labels: ['ci']
|
||||
---
|
||||
|
||||
cc @pezkuwi-js/notifications
|
||||
cc @pezkuwichain/notifications
|
||||
|
||||
Some configured endpoints are not available.
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!--
|
||||
|
||||
For general support, howto, coding and bundling questions, please
|
||||
use the Bizinikiwi & Pezkuwi StackExchange at
|
||||
visit the Pezkuwi documentation at
|
||||
|
||||
https://bizinikiwi.stackexchange.com/
|
||||
https://docs.pezkuwichain.io/
|
||||
|
||||
and get other ecosystem developers involved. This issues in this
|
||||
repository are meant for the tracking of feature requests and bug
|
||||
|
||||
@@ -16,7 +16,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
token: ${{ secrets.GH_PAT_BOT }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
@@ -28,8 +28,8 @@ jobs:
|
||||
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
|
||||
CRUST_SEEDS: ${{ secrets.CRUST_SEEDS }}
|
||||
GH_PAGES_SRC: packages/apps/build
|
||||
GH_PAT: ${{ secrets.GH_PAT_BOT }}
|
||||
GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GH_PAT_BOT }}
|
||||
GH_PAT: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }}
|
||||
PINATA_SECRET_KEY: ${{ secrets.PINATA_SECRET_KEY }}
|
||||
@@ -60,18 +60,18 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
# Removed `macos-latest` since notarization errors.
|
||||
# ref: https://github.com/polkadot-js/apps/issues/10486
|
||||
# ref: https://github.com/pezkuwichain/pezkuwi-apps/issues/10486
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ secrets.GH_PAT_BOT }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
# Removed `macos-latest` since notarization errors.
|
||||
# ref: https://github.com/polkadot-js/apps/issues/10486
|
||||
# ref: https://github.com/pezkuwichain/pezkuwi-apps/issues/10486
|
||||
# - name: Prepare for app notarization (macOS)
|
||||
# if: startsWith(matrix.os, 'macos')
|
||||
# # Import Apple API key for app notarization on macOS
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
A Portal into the Pezkuwi and Bizinikiwi networks. Provides a view and interaction layer from a browser.
|
||||
|
||||
This can be accessed as a hosted application via https://pezkuwi.js.org/apps/ or you can access the IPFS hosted version via https://pezkuwi.js.org/apps/ipfs (via hash) or https://dotapps.io (via ipns) to explore any of the supported Pezkuwi and Bizinikiwi chains.
|
||||
This can be accessed as a hosted application via https://pezkuwichain.app or you can access the IPFS hosted version via https://pezkuwichain.app/ipfs (via hash) to explore any of the supported Pezkuwi and Bizinikiwi chains.
|
||||
|
||||
If you run one or more IPFS node(s), pinning the UI (which only gets updated on releases) will make it faster for you and others. You can find details about that below in the IPFS chapter below.
|
||||
|
||||
@@ -18,7 +18,7 @@ The repo is split into a number of packages, each representing an application.
|
||||
|
||||
Contributions are welcome!
|
||||
|
||||
To start off, this repo (along with others in the [@pezkuwi](https://github.com/pezkuwi-js/) family) uses yarn workspaces to organize the code. As such, after cloning dependencies _should_ be installed via `yarn`, not via npm, the latter will result in broken dependencies.
|
||||
To start off, this repo (along with others in the [@pezkuwi](https://github.com/pezkuwichain/) family) uses yarn workspaces to organize the code. As such, after cloning dependencies _should_ be installed via `yarn`, not via npm, the latter will result in broken dependencies.
|
||||
|
||||
To get started -
|
||||
|
||||
@@ -35,13 +35,13 @@ To get started -
|
||||
You can run a docker container via -
|
||||
|
||||
```
|
||||
docker run --rm -it --name pezkuwi-ui -e WS_URL=ws://someip:9944 -p 80:80 jacogr/pezkuwi-js-apps:latest
|
||||
docker run --rm -it --name pezkuwi-ui -e WS_URL=ws://someip:9944 -p 80:80 pezkuwichain/pezkuwi-apps:latest
|
||||
```
|
||||
|
||||
To build a docker container containing local changes -
|
||||
|
||||
```
|
||||
docker build -t jacogr/pezkuwi-js-apps -f docker/Dockerfile .
|
||||
docker build -t pezkuwichain/pezkuwi-apps -f docker/Dockerfile .
|
||||
```
|
||||
|
||||
When using these Docker commands, you can access the UI via http://localhost:80 (or just http://localhost)
|
||||
@@ -53,7 +53,7 @@ IPFS allows sharing files in a decentralized manner in a similar fashion the pez
|
||||
You can pin with the following command:
|
||||
|
||||
```
|
||||
curl -s https://pezkuwi.js.org/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID ipfs pin add --progress CID
|
||||
curl -s https://pezkuwichain.app/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID ipfs pin add --progress CID
|
||||
```
|
||||
|
||||
Here is a script you can save as `/usr/local/bin/pezkuwijs-ipfs-pin.sh`:
|
||||
@@ -62,7 +62,7 @@ Here is a script you can save as `/usr/local/bin/pezkuwijs-ipfs-pin.sh`:
|
||||
#!/usr/bin/env bash
|
||||
|
||||
IPFS='/usr/local/bin/ipfs'
|
||||
curl -s https://pezkuwi.js.org/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID $IPFS pin add --progress CID
|
||||
curl -s https://pezkuwichain.app/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID $IPFS pin add --progress CID
|
||||
```
|
||||
|
||||
I suggest to run the script once. The output should be similar to (the CID/Hash will very likely be different though):
|
||||
|
||||
Reference in New Issue
Block a user