Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/src/commit/8684292d02ffb0cab5d6a351968aaa078b62e68c/.devcontainer/setup.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#!/usr/bin/env bash
|
|
|
|
# Install Node packages
|
|
pnpm install
|
|
|
|
# Copy in skeleton configuration if there is no existing configuration
|
|
if [ ! -d "config/" ]; then
|
|
echo "Adding skeleton config"
|
|
mkdir config/
|
|
cp -r src/skeleton/* config
|
|
fi
|