Size: 3663 bytes.


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# Infrastructure as Code Specification
# This is the SOURCE OF TRUTH for all docker configs
#
# To apply changes:
#   1. Edit this file (system.gpt.yml)
#   2. Run: make expand
#   3. Commit both this file and the generated docker files
#
# Generated files (do not edit manually):
#   - Dockerfile
#   - docker-compose.yml
#   - docker-compose.dev.yml
#
# Intelligent caching:
# Images are tagged with content hashes (e.g., cs-app:www-trycopilot-ai-abc123)
# computed from source files. Docker only rebuilds when source changes.
# Use 'make expand-check' to see which services need rebuilding.

storage:
  database-volume: {}

services:
  www-trycopilot-ai:
    type: web-application
    source: cs/apps/trycopilot.ai

    network:
      interface: private

    replicas:
      prod: 5
      dev: 3

    storage:
      - mount: database-volume
        access: read-write

    security:
      isolation: unprivileged

    config:
      - VERSION
      - COMMIT

    command:
      - /main
      - --host=0.0.0.0
      - --port=8080
      - --version=${VERSION}
      - --commit=${COMMIT}

  www-cite-pub:
    type: web-application
    source: cs/apps/cite.pub

    network:
      interface: public
      port: 8080

    replicas: 1

    security:
      isolation: user-namespaced

    command:
      - /main
      - --host=0.0.0.0
      - --port=8080

  code-viewer:
    type: web-application
    source: cs/apps/code-viewer

    network:
      interface: private

    replicas: 3

    security:
      isolation: unprivileged

    config:
      - VERSION
      - COMMIT

    command:
      - /main
      - --host=0.0.0.0
      - --port=8080
      - --version=${VERSION}
      - --commit=${COMMIT}

  database-service:
    type: data-store
    source: cs/apps/database-service

    network:
      interface: private

    replicas: 5

    storage:
      - mount: database-volume
        access: read-write

    security:
      isolation: privileged

    command:
      - /main
      - --host=0.0.0.0
      - --data_dir=/data
      - --port=8080

  load-balancer:
    type: reverse-proxy
    source: cs/apps/load-balancer

    network:
      interface:
        prod: private
        dev: public
      port: 8080

    replicas: 1

    storage:
      - mount: database-volume
        access: read-write

    dependencies:
      - service: www-trycopilot-ai
        requirement: available
      - service: www-cite-pub
        requirement: available

    command:
      - /main
      - --host=0.0.0.0
      - --port=8080

  service-registry:
    type: orchestration
    source: cs/apps/service-registry

    network:
      interface: private

    replicas: 1

    storage:
      - mount: database-volume
        access: read-write

    security:
      isolation: privileged

    command:
      - /main
      - --host=0.0.0.0
      - --port=8080

  ngrok:
    type: tunnel

    network:
      management_port: 4040

    replicas: 1
    restart_policy: manual

    # Domain mappings: which domains route to which services
    # The system automatically determines service ports from their network config
    # and generates the full ngrok YAML configuration
    expose:
      load-balancer:
        # domain2service
        mapping:
          www.trycopilot.ai: www-trycopilot-ai
          code.trycopilot.ai: code-viewer
          www.cite.pub: www-cite-pub
        prod:
          [
            www.trycopilot.ai,
            code.trycopilot.ai,
            www.cite.pub
          ]
        dev:
          [
            dev.www.trycopilot.ai,
            dev.code.trycopilot.ai,
            dev.www.cite.pub
          ]

    dependencies:
      - service: load-balancer
v0 (commit) © 2025 @p13i.io | Load balancer proxied to: cs-code-viewer-3:8080 in 5ms.