diff --git a/.yarnrc.yml b/.yarnrc.yml index fb36099..de0e56a 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -2,7 +2,7 @@ nodeLinker: node-modules # Support multiple architectures - download pre-built binaries instead of compiling supportedArchitectures: - os: [ "linux", "darwin" ] + os: [ "linux", "darwin", "win32" ] cpu: [ "x64", "arm64" ] libc: [ "glibc" ] diff --git a/apps/api/.env.example b/apps/api/.env.example index e0063f3..2d8beb7 100644 --- a/apps/api/.env.example +++ b/apps/api/.env.example @@ -16,6 +16,7 @@ JWT_SECRET=hBx9Xh8J6KOMAGAsSjvcZJBT5TWyIkFX USE_HTTPS=false API_URI=http://localhost:8080 +WIKI_URI=http://localhost:1000 DASHBOARD_URI=http://localhost:3000 LANDING_URI=http://localhost:4000 diff --git a/package.json b/package.json index ce9e17b..3d634c4 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "clean": "turbo clean --concurrency 20 && rimraf node_modules .turbo", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "services:up": "docker compose -f docker/docker-compose.dev.yml up -d", + "services:down": "docker compose -f docker/docker-compose.dev.yml down", "test": "vitest", "test:watch": "vitest --watch", "test:ui": "vitest --ui",