Fix ESLint issues

This commit is contained in:
Stijnus
2025-01-28 11:39:12 +01:00
parent 58d3853cd6
commit c4c73622f5
44 changed files with 4193 additions and 3291 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,14 +69,14 @@ 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']
app-prebuild:
image: ghcr.io/stackblitz-labs/bolt.diy:latest
image: ghcr.io/stackblitz-labs/bolt.diy:latest
ports:
- "5173:5173"
- '5173:5173'
environment:
- NODE_ENV=production
- COMPOSE_PROFILES=production
@@ -86,7 +86,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:
- prebuilt
- prebuilt