Skip to content

Commit d044e3a

Browse files
committed
Add missing envvars
1 parent 8a83473 commit d044e3a

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.env.example

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,13 @@ TIPS_MAINTENANCE_RPC_NODE=http://localhost:2222
2626
TIPS_MAINTENANCE_KAFKA_BROKERS=localhost:9092
2727
TIPS_MAINTENANCE_KAFKA_TOPIC=tips-audit
2828
TIPS_MAINTENANCE_POLL_INTERVAL_MS=250
29-
TIPS_MAINTENANCE_LOG_LEVEL=info
29+
TIPS_MAINTENANCE_LOG_LEVEL=info
30+
31+
# TIPS UI
32+
TIPS_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres
33+
TIPS_UI_AWS_REGION=us-east-1
34+
TIPS_UI_S3_BUCKET_NAME=tips
35+
TIPS_UI_S3_CONFIG_TYPE=manual
36+
TIPS_UI_S3_ENDPOINT=http://localhost:7000
37+
TIPS_UI_S3_ACCESS_KEY_ID=minioadmin
38+
TIPS_UI_S3_SECRET_ACCESS_KEY=minioadmin

.github/workflows/ui.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ jobs:
2222
cache: 'npm'
2323
cache-dependency-path: ui/package-lock.json
2424
- run: cp .env.example ui/.env
25-
- run: cd ui && npm ci
26-
- run: cd ui && npm run lint
25+
- run: cd ui && yarn lint
2726

2827
type-check:
2928
name: Type Check
@@ -36,7 +35,6 @@ jobs:
3635
cache: 'npm'
3736
cache-dependency-path: ui/package-lock.json
3837
- run: cp .env.example ui/.env
39-
- run: cd ui && npm ci
4038
- run: cd ui && npx tsc --noEmit
4139

4240
build:
@@ -50,5 +48,4 @@ jobs:
5048
cache: 'npm'
5149
cache-dependency-path: ui/package-lock.json
5250
- run: cp .env.example ui/.env
53-
- run: cd ui && npm ci
54-
- run: cd ui && npm run build
51+
- run: cd ui && yarn build

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ Thumbs.db
1919
# Environment variables
2020
.env
2121
/ui/.env
22+
23+
# Claude
24+
/.claude
25+
/ui/.claude

0 commit comments

Comments
 (0)