{
  "manifest_version": "1.0.0",
  "template": {
    "id": "d1b0ad6c-2db2-4905-bef7-e53aeaa288ba",
    "slug": "gitea-railway",
    "name": "Gitea",
    "description": "Open-source GitHub alternative. Pull requests, package registry, Git LFS.",
    "url": "https://railway.com/deploy/gitea-railway",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/gitea-railway"
    }
  },
  "services": [
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "gitea",
      "source": {
        "repo": "https://github.com/gridalpha/gitea-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "tcp_ports": [
        22
      ],
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Standard Redis port",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Default ACL user created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Convenience alias of the generated password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Generated password for the default user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Data directory, a subdirectory of the volume mount",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Standard PostgreSQL port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "libpq alias of the superuser name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "libpq alias of the default database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "libpq alias of the superuser password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Default database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "rRAILWAY_PRIVATE_DOMAINailway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Superuser created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Validity window of the generated self-signed TLS certificate",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Generated superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Grace period for in-flight connections on redeploy",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "gitea",
      "description": "Health-check and HTTP port",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "GITEA_DB_HOST",
      "service": "gitea",
      "description": "Private database host and port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "GITEA__log__MODE",
      "service": "gitea",
      "description": "Log to stdout",
      "secret": false,
      "strategy": "default",
      "default": "console"
    },
    {
      "key": "GITEA_ADMIN_EMAIL",
      "service": "gitea",
      "description": "Administrator email address",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.dev"
    },
    {
      "key": "GITEA_DB_PASSWORD",
      "service": "gitea",
      "description": "Password for Gitea's scoped role",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "GITEA__log__LEVEL",
      "service": "gitea",
      "description": "Log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "Info"
    },
    {
      "key": "GITEA_DB_ADMIN_URL",
      "service": "gitea",
      "description": "Used once to provision Gitea's role",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__cache__HOST",
      "service": "gitea",
      "description": "Redis cache connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__queue__TYPE",
      "service": "gitea",
      "description": "Background queue backend",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "GITEA_ADMIN_PASSWORD",
      "service": "gitea",
      "description": "First administrator password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "GITEA_ADMIN_USERNAME",
      "service": "gitea",
      "description": "First administrator account",
      "secret": false,
      "strategy": "default",
      "default": "gitea_admin"
    },
    {
      "key": "GITEA__cache__ADAPTER",
      "service": "gitea",
      "description": "Cache backend",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "GITEA__mailer__ENABLED",
      "service": "gitea",
      "description": "Outgoing email disabled",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "GITEA__queue__CONN_STR",
      "service": "gitea",
      "description": "Redis queue connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__server__PROTOCOL",
      "service": "gitea",
      "description": "TLS terminates at the edge",
      "secret": false,
      "strategy": "default",
      "default": "http"
    },
    {
      "key": "RAILWAY_DOCKERFILE_PATH",
      "service": "gitea",
      "description": "Dockerfile location in the repo",
      "secret": false,
      "strategy": "default",
      "default": "Dockerfile"
    },
    {
      "key": "GITEA__server__HTTP_ADDR",
      "service": "gitea",
      "description": "Listen on all interfaces",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0"
    },
    {
      "key": "GITEA__server__HTTP_PORT",
      "service": "gitea",
      "description": "Application HTTP port",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "GITEA__session__PROVIDER",
      "service": "gitea",
      "description": "Session store backend",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "GITEA__security__SECRET_KEY",
      "service": "gitea",
      "description": "Global secret for stored data",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "GITEA__storage__MINIO_BUCKET",
      "service": "gitea",
      "description": "Bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__storage__STORAGE_TYPE",
      "service": "gitea",
      "description": "Send uploads to object storage",
      "secret": false,
      "strategy": "default",
      "default": "minio"
    },
    {
      "key": "GITEA__security__INSTALL_LOCK",
      "service": "gitea",
      "description": "Skip the web installer",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "GITEA__session__COOKIE_SECURE",
      "service": "gitea",
      "description": "HTTPS-only session cookie",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "GITEA__storage__MINIO_USE_SSL",
      "service": "gitea",
      "description": "Use TLS to the bucket",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "GITEA__storage__MINIO_ENDPOINT",
      "service": "gitea",
      "description": "Bucket endpoint host",
      "secret": false,
      "strategy": "default",
      "default": "t3.storageapi.dev"
    },
    {
      "key": "GITEA__storage__MINIO_LOCATION",
      "service": "gitea",
      "description": "Bucket signing region",
      "secret": false,
      "strategy": "default",
      "default": "auto"
    },
    {
      "key": "GITEA__server__LFS_START_SERVER",
      "service": "gitea",
      "description": "Enable the Git LFS endpoint",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "GITEA__session__PROVIDER_CONFIG",
      "service": "gitea",
      "description": "Redis session connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__repository__DEFAULT_BRANCH",
      "service": "gitea",
      "description": "Default branch for new repos",
      "secret": false,
      "strategy": "default",
      "default": "main"
    },
    {
      "key": "GITEA__service__REQUIRE_SIGNIN_VIEW",
      "service": "gitea",
      "description": "Allow anonymous browsing",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "GITEA__storage__MINIO_ACCESS_KEY_ID",
      "service": "gitea",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__security__REVERSE_PROXY_LIMIT",
      "service": "gitea",
      "description": "Forwarded-header hop count",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "GITEA__service__DISABLE_REGISTRATION",
      "service": "gitea",
      "description": "Close public sign-ups",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "GITEA__storage__MINIO_SECRET_ACCESS_KEY",
      "service": "gitea",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GITEA__cron_0X2E_update_checker__ENABLED",
      "service": "gitea",
      "description": "Disable upstream version check",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "GITEA__log_0X2E_logger_0X2E_access__MODE",
      "service": "gitea",
      "description": "Enable HTTP access logging",
      "secret": false,
      "strategy": "default",
      "default": "console"
    },
    {
      "key": "GITEA__storage__MINIO_BUCKET_LOOKUP_TYPE",
      "service": "gitea",
      "description": "Path-style addressing",
      "secret": false,
      "strategy": "default",
      "default": "path"
    },
    {
      "key": "GITEA__security__REVERSE_PROXY_TRUSTED_PROXIES",
      "service": "gitea",
      "description": "Trust the edge for client IPs",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0/0,::/0"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "gitea-railway"
      }
    },
    "cli": "railway deploy --template gitea-railway",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "d1b0ad6c-2db2-4905-bef7-e53aeaa288ba",
            "serializedConfig": {
              "buckets": {
                "1954b8ff-83b5-43fb-bc27-633b9befdbb0": {
                  "name": "gitea-storage"
                }
              },
              "services": {
                "028e5afb-ecbe-40ad-a3c5-865188c67744": {
                  "icon": "https://cdn.sanity.io/images/sy1jschh/production/0ce0bfdcfbdbf69662b1116671f97c2dd788b655-157x157.svg",
                  "name": "Redis",
                  "deploy": {
                    "startCommand": "/bin/sh -c \"rm -rf $RAILWAY_VOLUME_MOUNT_PATH/lost+found/ && exec docker-entrypoint.sh redis-server --requirepass $REDIS_PASSWORD --save 60 1 --dir $RAILWAY_VOLUME_MOUNT_PATH\"",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Standard Redis port",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Default ACL user created on first boot",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Convenience alias of the generated password",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated password for the default user",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "028e5afb-ecbe-40ad-a3c5-865188c67744": {
                      "mountPath": "/data"
                    }
                  }
                },
                "6510e90b-3924-486f-8585-c9351229960e": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Data directory, a subdirectory of the volume mount",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Standard PostgreSQL port",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser name",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "libpq alias of the default database",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser password",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created on first boot",
                      "defaultValue": "rRAILWAY_PRIVATE_DOMAINailway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Superuser created on first boot",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Validity window of the generated self-signed TLS certificate",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Grace period for in-flight connections on redeploy",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "6510e90b-3924-486f-8585-c9351229960e": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "97b9f740-5b18-443a-9893-fcef948ca5a3": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/gitea.svg",
                  "name": "gitea",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/gitea-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Health-check and HTTP port",
                      "defaultValue": "3000"
                    },
                    "GITEA_DB_HOST": {
                      "isOptional": false,
                      "description": "Private database host and port",
                      "defaultValue": "${{Postgres.RAILWAY_PRIVATE_DOMAIN}}:${{Postgres.PGPORT}}"
                    },
                    "GITEA__log__MODE": {
                      "isOptional": false,
                      "description": "Log to stdout",
                      "defaultValue": "console"
                    },
                    "GITEA_ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "Administrator email address",
                      "defaultValue": "admin@example.dev"
                    },
                    "GITEA_DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for Gitea's scoped role",
                      "defaultValue": "{{GITEA_DB_PASSWORD}}"
                    },
                    "GITEA__log__LEVEL": {
                      "isOptional": false,
                      "description": "Log verbosity",
                      "defaultValue": "Info"
                    },
                    "GITEA_DB_ADMIN_URL": {
                      "isOptional": false,
                      "description": "Used once to provision Gitea's role",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "GITEA__cache__HOST": {
                      "isOptional": false,
                      "description": "Redis cache connection",
                      "defaultValue": "${{Redis.REDIS_URL}}/0"
                    },
                    "GITEA__queue__TYPE": {
                      "isOptional": false,
                      "description": "Background queue backend",
                      "defaultValue": "redis"
                    },
                    "GITEA_ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First administrator password",
                      "defaultValue": "{{GITEA_ADMIN_PASSWORD}}"
                    },
                    "GITEA_ADMIN_USERNAME": {
                      "isOptional": false,
                      "description": "First administrator account",
                      "defaultValue": "gitea_admin"
                    },
                    "GITEA__cache__ADAPTER": {
                      "isOptional": false,
                      "description": "Cache backend",
                      "defaultValue": "redis"
                    },
                    "GITEA__mailer__ENABLED": {
                      "isOptional": false,
                      "description": "Outgoing email disabled",
                      "defaultValue": "false"
                    },
                    "GITEA__queue__CONN_STR": {
                      "isOptional": false,
                      "description": "Redis queue connection",
                      "defaultValue": "${{Redis.REDIS_URL}}/2"
                    },
                    "GITEA__server__PROTOCOL": {
                      "isOptional": false,
                      "description": "TLS terminates at the edge",
                      "defaultValue": "http"
                    },
                    "RAILWAY_DOCKERFILE_PATH": {
                      "isOptional": false,
                      "description": "Dockerfile location in the repo",
                      "defaultValue": "Dockerfile"
                    },
                    "GITEA__server__HTTP_ADDR": {
                      "isOptional": false,
                      "description": "Listen on all interfaces",
                      "defaultValue": "0.0.0.0"
                    },
                    "GITEA__server__HTTP_PORT": {
                      "isOptional": false,
                      "description": "Application HTTP port",
                      "defaultValue": "3000"
                    },
                    "GITEA__session__PROVIDER": {
                      "isOptional": false,
                      "description": "Session store backend",
                      "defaultValue": "redis"
                    },
                    "GITEA__security__SECRET_KEY": {
                      "isOptional": false,
                      "description": "Global secret for stored data",
                      "defaultValue": "{{GITEA__security__SECRET_KEY}}"
                    },
                    "GITEA__storage__MINIO_BUCKET": {
                      "isOptional": false,
                      "description": "Bucket name",
                      "defaultValue": "${{gitea-storage.BUCKET}}"
                    },
                    "GITEA__storage__STORAGE_TYPE": {
                      "isOptional": false,
                      "description": "Send uploads to object storage",
                      "defaultValue": "minio"
                    },
                    "GITEA__security__INSTALL_LOCK": {
                      "isOptional": false,
                      "description": "Skip the web installer",
                      "defaultValue": "true"
                    },
                    "GITEA__session__COOKIE_SECURE": {
                      "isOptional": false,
                      "description": "HTTPS-only session cookie",
                      "defaultValue": "true"
                    },
                    "GITEA__storage__MINIO_USE_SSL": {
                      "isOptional": false,
                      "description": "Use TLS to the bucket",
                      "defaultValue": "true"
                    },
                    "GITEA__storage__MINIO_ENDPOINT": {
                      "isOptional": false,
                      "description": "Bucket endpoint host",
                      "defaultValue": "t3.storageapi.dev"
                    },
                    "GITEA__storage__MINIO_LOCATION": {
                      "isOptional": false,
                      "description": "Bucket signing region",
                      "defaultValue": "auto"
                    },
                    "GITEA__server__LFS_START_SERVER": {
                      "isOptional": false,
                      "description": "Enable the Git LFS endpoint",
                      "defaultValue": "true"
                    },
                    "GITEA__session__PROVIDER_CONFIG": {
                      "isOptional": false,
                      "description": "Redis session connection",
                      "defaultValue": "${{Redis.REDIS_URL}}/1"
                    },
                    "GITEA__repository__DEFAULT_BRANCH": {
                      "isOptional": false,
                      "description": "Default branch for new repos",
                      "defaultValue": "main"
                    },
                    "GITEA__service__REQUIRE_SIGNIN_VIEW": {
                      "isOptional": false,
                      "description": "Allow anonymous browsing",
                      "defaultValue": "false"
                    },
                    "GITEA__storage__MINIO_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{gitea-storage.ACCESS_KEY_ID}}"
                    },
                    "GITEA__security__REVERSE_PROXY_LIMIT": {
                      "isOptional": false,
                      "description": "Forwarded-header hop count",
                      "defaultValue": "2"
                    },
                    "GITEA__service__DISABLE_REGISTRATION": {
                      "isOptional": false,
                      "description": "Close public sign-ups",
                      "defaultValue": "true"
                    },
                    "GITEA__storage__MINIO_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{gitea-storage.SECRET_ACCESS_KEY}}"
                    },
                    "GITEA__cron_0X2E_update_checker__ENABLED": {
                      "isOptional": false,
                      "description": "Disable upstream version check",
                      "defaultValue": "false"
                    },
                    "GITEA__log_0X2E_logger_0X2E_access__MODE": {
                      "isOptional": false,
                      "description": "Enable HTTP access logging",
                      "defaultValue": "console"
                    },
                    "GITEA__storage__MINIO_BUCKET_LOOKUP_TYPE": {
                      "isOptional": false,
                      "description": "Path-style addressing",
                      "defaultValue": "path"
                    },
                    "GITEA__security__REVERSE_PROXY_TRUSTED_PROXIES": {
                      "isOptional": false,
                      "description": "Trust the edge for client IPs",
                      "defaultValue": "0.0.0.0/0,::/0"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "22": {}
                    },
                    "serviceDomains": {
                      "<hasDomain>:3000": {
                        "port": 3000
                      }
                    }
                  },
                  "volumeMounts": {
                    "97b9f740-5b18-443a-9893-fcef948ca5a3": {
                      "mountPath": "/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T16:14:52.212Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-04T18:05:54.978Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_820dde47d3ab42f69dfc",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 148,
    "typical_build_seconds": 51,
    "typical_start_seconds": 10,
    "slowest_service": "gitea"
  }
}
