@weirdfingers/baseboards 0.9.2 → 0.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weirdfingers/baseboards",
3
- "version": "0.9.2",
3
+ "version": "0.9.4",
4
4
  "description": "One-command launcher for the Boards image generation application",
5
5
  "type": "module",
6
6
  "bin": {
@@ -3,7 +3,7 @@ Boards Backend SDK
3
3
  Open-source creative toolkit for AI-generated content
4
4
  """
5
5
 
6
- __version__ = "0.9.2"
6
+ __version__ = "0.9.4"
7
7
 
8
8
  from .config import settings
9
9
 
@@ -15,6 +15,9 @@ services:
15
15
  build:
16
16
  context: ./web
17
17
  dockerfile: ../Dockerfile.web
18
+ args:
19
+ NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL:-http://localhost:8800}
20
+ NEXT_PUBLIC_GRAPHQL_URL: ${NEXT_PUBLIC_GRAPHQL_URL:-http://localhost:8800/graphql}
18
21
  env_file: web/.env
19
22
  environment:
20
23
  - INTERNAL_API_URL=http://api:8800
@@ -36,7 +36,8 @@ services:
36
36
  - api/.env
37
37
  environment:
38
38
  # Enable loading custom generators and plugins from /app/extensions
39
- - PYTHONPATH=/app:/app/extensions
39
+ # Include /app/src for the boards module (from Docker image)
40
+ - PYTHONPATH=/app/src:/app/extensions
40
41
  # Explicit paths to configuration files
41
42
  - BOARDS_GENERATORS_CONFIG_PATH=/app/config/generators.yaml
42
43
  - BOARDS_STORAGE_CONFIG_PATH=/app/config/storage_config.yaml
@@ -83,7 +84,8 @@ services:
83
84
  - api/.env
84
85
  environment:
85
86
  # Enable loading custom generators and plugins from /app/extensions
86
- - PYTHONPATH=/app:/app/extensions
87
+ # Include /app/src for the boards module (from Docker image)
88
+ - PYTHONPATH=/app/src:/app/extensions
87
89
  # Explicit paths to configuration files
88
90
  - BOARDS_GENERATORS_CONFIG_PATH=/app/config/generators.yaml
89
91
  - BOARDS_STORAGE_CONFIG_PATH=/app/config/storage_config.yaml
@@ -16,7 +16,7 @@
16
16
  "@radix-ui/react-slot": "^1.2.3",
17
17
  "@radix-ui/react-toast": "^1.2.15",
18
18
  "@tailwindcss/postcss": "^4.1.13",
19
- "@weirdfingers/boards": "^0.9.2",
19
+ "@weirdfingers/boards": "^0.9.4",
20
20
  "class-variance-authority": "^0.7.1",
21
21
  "clsx": "^2.0.0",
22
22
  "graphql": "^16.11.0",