Revert "Major UI improvements"

This reverts commit 6e52114172.
This commit is contained in:
Stijnus
2025-01-28 10:28:45 +01:00
parent 6e52114172
commit 0db9ce2717
45 changed files with 3317 additions and 4287 deletions

View File

@@ -6,8 +6,8 @@ services:
dockerfile: Dockerfile
target: bolt-ai-production
ports:
- '5173:5173'
env_file: '.env.local'
- "5173:5173"
env_file: ".env.local"
environment:
- NODE_ENV=production
- COMPOSE_PROFILES=production
@@ -28,7 +28,7 @@ services:
- DEFAULT_NUM_CTX=${DEFAULT_NUM_CTX:-32768}
- RUNNING_IN_DOCKER=true
extra_hosts:
- 'host.docker.internal:host-gateway'
- "host.docker.internal:host-gateway"
command: pnpm run dockerstart
profiles:
- production
@@ -37,7 +37,7 @@ services:
image: bolt-ai:development
build:
target: bolt-ai-development
env_file: '.env.local'
env_file: ".env.local"
environment:
- NODE_ENV=development
- VITE_HMR_PROTOCOL=ws
@@ -61,7 +61,7 @@ services:
- DEFAULT_NUM_CTX=${DEFAULT_NUM_CTX:-32768}
- RUNNING_IN_DOCKER=true
extra_hosts:
- 'host.docker.internal:host-gateway'
- "host.docker.internal:host-gateway"
volumes:
- type: bind
source: .
@@ -69,6 +69,6 @@ services:
consistency: cached
- /app/node_modules
ports:
- '5173:5173'
- "5173:5173"
command: pnpm run dev --host 0.0.0.0
profiles: ['development', 'default']
profiles: ["development", "default"]