Skip to content

Commit cb69d53

Browse files
committed
small fixes
1 parent f37c17d commit cb69d53

2 files changed

Lines changed: 3 additions & 12 deletions

File tree

docs/css-setup.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Then you can follow the instructions in their readme:
3535
1. Install the [eye reasoner](https://github.com/eyereasoner/eye/) and have `eye` available on your path.
3636
2. Ensure that you are using Node.js 20 or higher, e.g. by running `nvm use`. (see [.nvmrc](./.nvmrc))
3737
3. Enable Node.js Corepack with `corepack enable`.
38-
4. Run `yarn install` in the project root (this will automatically call `yarn build`).
38+
4. Run `yarn install` in the project root.
39+
5. Run `yarn build` in the project root.
3940

4041
## Start Authoriation server
4142
Make sure `uma.local` host is setup corectly acording to `docs/name-resolving.md`.
@@ -62,6 +63,6 @@ needs to become:
6263

6364
In the `user-managed-access` repo go to `packages/css` and start the server.
6465
```bash
65-
cd packages/uma
66+
cd packages/css
6667
yarn run community-solid-server -m . -c ./config/default.json ./config/init-pat.json --seedConfig ./config/seed.json -b "http://rs.local:3000/" -p 3000
6768
```

makefile

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,6 @@ kind-deploy:
210210
@echo "📄 Adding localhost entries for ingress hosts..."
211211
@grep -qxF "127.0.0.1 aggregator.local" /etc/hosts || sudo -- sh -c "echo '127.0.0.1 aggregator.local' >> /etc/hosts"
212212
@grep -qxF "127.0.0.1 wsl.local" /etc/hosts || sudo -- sh -c "echo '127.0.0.1 wsl.local' >> /etc/hosts"
213-
@if [ -f /mnt/c/Windows/System32/drivers/etc/hosts ]; then \
214-
echo "📄 Detected Windows hosts file, adding ingress host entries..."; \
215-
grep -qxF "127.0.0.1 aggregator.local" /mnt/c/Windows/System32/drivers/etc/hosts || sudo -- sh -c "echo '127.0.0.1 aggregator.local' >> /mnt/c/Windows/System32/drivers/etc/hosts"; \
216-
fi
217213

218214
@echo "📄 Applying ingress-uma..."
219215
@kubectl apply -f k8s/app/ingress-uma.yaml
@@ -257,9 +253,6 @@ kind-undeploy:
257253
@echo "🧹 Removing localhost entries..."
258254
@sudo sed -i.bak '/aggregator\.local/d' /etc/hosts || true
259255
@sudo sed -i.bak '/wsl\.local/d' /etc/hosts || true
260-
@if [ -f /mnt/c/Windows/System32/drivers/etc/hosts ]; then \
261-
sudo sed -i.bak '/aggregator\.local/d' /mnt/c/Windows/System32/drivers/etc/hosts || true; \
262-
fi
263256
@echo "✅ Deployment stopped (Traefik and cleaner still running)"
264257

265258
kind-stop-traefik:
@@ -292,9 +285,6 @@ kind-clean:
292285
@echo "🧹 Removing localhost entries..."
293286
@sudo sed -i.bak '/aggregator\.local/d' /etc/hosts || true
294287
@sudo sed -i.bak '/wsl\.local/d' /etc/hosts || true
295-
@if [ -f /mnt/c/Windows/System32/drivers/etc/hosts ]; then \
296-
sudo sed -i.bak '/aggregator\.local/d' /mnt/c/Windows/System32/drivers/etc/hosts || true; \
297-
fi
298288
@echo "🗑️ Removing generated key files..."
299289
@rm -f private_key.pem
300290
@echo "✅ Cleanup complete"

0 commit comments

Comments
 (0)