@loopstack/loopstack-module 0.30.0 → 0.30.2

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.
@@ -0,0 +1,25 @@
1
+ name: loopstack
2
+
3
+ services:
4
+ postgres:
5
+ image: postgres:16-alpine
6
+ ports:
7
+ - '5432:5432'
8
+ environment:
9
+ POSTGRES_DB: ${DATABASE_NAME:-postgres}
10
+ POSTGRES_USER: ${DATABASE_USERNAME:-postgres}
11
+ POSTGRES_PASSWORD: ${DATABASE_PASSWORD:-admin}
12
+ volumes:
13
+ - postgres_data:/var/lib/postgresql/data
14
+
15
+ redis:
16
+ image: redis:8-alpine
17
+ ports:
18
+ - '6379:6379'
19
+ command: ['redis-server', '--appendonly', 'yes']
20
+ volumes:
21
+ - redis_data:/data
22
+
23
+ volumes:
24
+ postgres_data:
25
+ redis_data:
@@ -0,0 +1,33 @@
1
+ name: loopstack
2
+
3
+ services:
4
+ postgres:
5
+ image: postgres:16-alpine
6
+ ports:
7
+ - '5432:5432'
8
+ environment:
9
+ POSTGRES_DB: ${DATABASE_NAME:-postgres}
10
+ POSTGRES_USER: ${DATABASE_USERNAME:-postgres}
11
+ POSTGRES_PASSWORD: ${DATABASE_PASSWORD:-admin}
12
+ volumes:
13
+ - postgres_data:/var/lib/postgresql/data
14
+
15
+ redis:
16
+ image: redis:8-alpine
17
+ ports:
18
+ - '6379:6379'
19
+ command: ['redis-server', '--appendonly', 'yes']
20
+ volumes:
21
+ - redis_data:/data
22
+
23
+ studio:
24
+ image: ghcr.io/loopstack-ai/loopstack-studio:latest
25
+ pull_policy: always
26
+ ports:
27
+ - '5173:3000'
28
+ environment:
29
+ VITE_API_URL: ${VITE_API_URL:-http://localhost:3000}
30
+
31
+ volumes:
32
+ postgres_data:
33
+ redis_data:
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@loopstack/loopstack-module",
3
3
  "displayName": "Loopstack Module",
4
4
  "description": "All-in-one NestJS module for bootstrapping a Loopstack application",
5
- "version": "0.30.0",
5
+ "version": "0.30.2",
6
6
  "license": "MIT",
7
7
  "author": {
8
8
  "name": "Jakob Klippel",
@@ -26,11 +26,11 @@
26
26
  "watch": "nest build --watch"
27
27
  },
28
28
  "dependencies": {
29
- "@loopstack/api": "^0.30.0",
30
- "@loopstack/auth": "^0.30.0",
31
- "@loopstack/common": "^0.30.0",
32
- "@loopstack/contracts": "^0.30.0",
33
- "@loopstack/core": "^0.30.0",
29
+ "@loopstack/api": "^0.31.0",
30
+ "@loopstack/auth": "^0.31.0",
31
+ "@loopstack/common": "^0.31.0",
32
+ "@loopstack/contracts": "^0.31.0",
33
+ "@loopstack/core": "^0.31.0",
34
34
  "@nestjs/common": "^11.1.19",
35
35
  "@nestjs/config": "^4.0.4",
36
36
  "@nestjs/core": "^11.1.19",
@@ -41,7 +41,9 @@
41
41
  },
42
42
  "devDependencies": {},
43
43
  "files": [
44
- "dist"
44
+ "dist",
45
+ "docker-compose.yml",
46
+ "docker-compose.infra.yml"
45
47
  ],
46
48
  "jest": {
47
49
  "moduleFileExtensions": [