@rizom/brain 0.2.0-alpha.7 → 0.2.0-alpha.8

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": "@rizom/brain",
3
- "version": "0.2.0-alpha.7",
3
+ "version": "0.2.0-alpha.8",
4
4
  "description": "Brain runtime + CLI — scaffold, run, and manage AI brain instances",
5
5
  "type": "module",
6
6
  "bin": {
@@ -0,0 +1,40 @@
1
+ service: __SERVICE_NAME__
2
+ image: <%= ENV['IMAGE_REPOSITORY'] %>
3
+
4
+ servers:
5
+ web:
6
+ hosts:
7
+ - <%= ENV['SERVER_IP'] %>
8
+
9
+ proxy:
10
+ ssl:
11
+ certificate_pem: CERTIFICATE_PEM
12
+ private_key_pem: PRIVATE_KEY_PEM
13
+ hosts:
14
+ - <%= ENV['BRAIN_DOMAIN'] %>
15
+ - preview.<%= ENV['BRAIN_DOMAIN'] %>
16
+ app_port: 80
17
+ healthcheck:
18
+ path: /health
19
+
20
+ registry:
21
+ server: ghcr.io
22
+ username: <%= ENV['REGISTRY_USERNAME'] %>
23
+ password:
24
+ - KAMAL_REGISTRY_PASSWORD
25
+
26
+ builder:
27
+ arch: amd64
28
+
29
+ env:
30
+ clear:
31
+ NODE_ENV: production
32
+ secret:
33
+ - AI_API_KEY
34
+ - GIT_SYNC_TOKEN
35
+ - MCP_AUTH_TOKEN
36
+ - DISCORD_BOT_TOKEN
37
+
38
+ volumes:
39
+ - /opt/brain-data:/app/brain-data
40
+ - /opt/brain.yaml:/app/brain.yaml