fix(dev): dotenv issues when getting setup with the repo (#2612)

- The .env.example was missing required Clickhouse values.
- A symlink was needed for .env from the root to the apps/webapp folder
This commit is contained in:
Matt Aitken
2025-10-17 11:49:40 +01:00
committed by GitHub
parent 885d2d3560
commit 68d0037e60
3 changed files with 8 additions and 1 deletions
+5
View File
@@ -13,6 +13,11 @@ APP_ORIGIN=http://localhost:3030
ELECTRIC_ORIGIN=http://localhost:3060
NODE_ENV=development
# Clickhouse
CLICKHOUSE_URL=http://default:password@localhost:8123
RUN_REPLICATION_CLICKHOUSE_URL=http://default:password@localhost:8123
RUN_REPLICATION_ENABLED=1
# Set this to UTC because Node.js uses the system timezone
TZ="UTC"