{
  "manifest_version": "1.0.0",
  "template": {
    "id": "7bc13bd3-047b-4733-9f9b-ac164f600bb5",
    "slug": "solidtime-1",
    "name": "Solidtime",
    "description": "Open source time tracking for freelancers and agencies",
    "url": "https://railway.com/deploy/solidtime-1",
    "upstream": {
      "image": "axllent/mailpit:latest"
    }
  },
  "services": [
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "gotenberg",
      "source": {
        "image": "gotenberg/gotenberg:8"
      },
      "needs_volume": false,
      "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": "worker",
      "source": {
        "repo": "https://github.com/gridalpha/solidtime-railway"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "mailpit",
      "source": {
        "image": "axllent/mailpit:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    },
    {
      "name": "solidtime",
      "source": {
        "repo": "https://github.com/gridalpha/solidtime-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/www/html/storage/app/public",
      "http": true
    },
    {
      "name": "scheduler",
      "source": {
        "repo": "https://github.com/gridalpha/solidtime-railway"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Data panel alias",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Redis auth password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "PORT",
      "service": "gotenberg",
      "description": "API port, also the health check port",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Cluster directory, one level below the mount",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Data panel alias",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Data panel alias",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Superuser name",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Lifetime of the generated server certificate",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "worker",
      "description": "Port for the wrapper's liveness endpoint",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "APP_ENV",
      "service": "worker",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "APP_URL",
      "service": "worker",
      "description": "Base URL for links in queued mail",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DB_HOST",
      "service": "worker",
      "description": "Private Postgres hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PORT",
      "service": "worker",
      "description": "Postgres port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "APP_NAME",
      "service": "worker",
      "description": "Product name used in queued mail",
      "secret": false,
      "strategy": "default",
      "default": "solidtime"
    },
    {
      "key": "APP_DEBUG",
      "service": "worker",
      "description": "Never true on a public instance",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "LOG_LEVEL",
      "service": "worker",
      "description": "Minimum level written to the log",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "MAIL_HOST",
      "service": "worker",
      "description": "Private SMTP host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MAIL_PORT",
      "service": "worker",
      "description": "Private SMTP port",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "REDIS_URL",
      "service": "worker",
      "description": "Private Redis URL used for the cache",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "S3_BUCKET",
      "service": "worker",
      "description": "Bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "S3_REGION",
      "service": "worker",
      "description": "Bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_DATABASE",
      "service": "worker",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PASSWORD",
      "service": "worker",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_USERNAME",
      "service": "worker",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "LOG_CHANNEL",
      "service": "worker",
      "description": "Send logs to the deploy log",
      "secret": false,
      "strategy": "default",
      "default": "stderr"
    },
    {
      "key": "MAIL_MAILER",
      "service": "worker",
      "description": "Send mail over SMTP",
      "secret": false,
      "strategy": "default",
      "default": "smtp"
    },
    {
      "key": "S3_ENDPOINT",
      "service": "worker",
      "description": "S3-compatible endpoint URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "CACHE_DRIVER",
      "service": "worker",
      "description": "Shared cache across roles",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "DB_CONNECTION",
      "service": "worker",
      "description": "solidtime supports PostgreSQL only",
      "secret": false,
      "strategy": "default",
      "default": "pgsql"
    },
    {
      "key": "GOTENBERG_URL",
      "service": "worker",
      "description": "PDF rendering service",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "CONTAINER_MODE",
      "service": "worker",
      "description": "Runs the Laravel queue worker role",
      "secret": false,
      "strategy": "default",
      "default": "worker"
    },
    {
      "key": "MAIL_FROM_NAME",
      "service": "worker",
      "description": "From name on outgoing mail",
      "secret": false,
      "strategy": "default",
      "default": "solidtime"
    },
    {
      "key": "SESSION_DRIVER",
      "service": "worker",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "database"
    },
    {
      "key": "WORKER_COMMAND",
      "service": "worker",
      "description": "Command supervised in worker mode",
      "secret": false,
      "strategy": "default",
      "default": "php /var/www/html/artisan queue:work --queue=default --sleep=3 --tries=3 --timeout=300 --max-time=3600"
    },
    {
      "key": "APP_FORCE_HTTPS",
      "service": "worker",
      "description": "Generate https URLs",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "FILESYSTEM_DISK",
      "service": "worker",
      "description": "Exports written here are downloaded through the web service",
      "secret": false,
      "strategy": "default",
      "default": "s3"
    },
    {
      "key": "MAIL_ENCRYPTION",
      "service": "worker",
      "description": "The bundled inbox advertises no STARTTLS",
      "secret": false,
      "strategy": "default",
      "default": "null"
    },
    {
      "key": "QUEUE_CONNECTION",
      "service": "worker",
      "description": "Queue backed by Postgres",
      "secret": false,
      "strategy": "default",
      "default": "database"
    },
    {
      "key": "S3_ACCESS_KEY_ID",
      "service": "worker",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MAIL_FROM_ADDRESS",
      "service": "worker",
      "description": "From address on outgoing mail",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "S3_SECRET_ACCESS_KEY",
      "service": "worker",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PUBLIC_FILESYSTEM_DISK",
      "service": "worker",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "public"
    },
    {
      "key": "S3_USE_PATH_STYLE_ENDPOINT",
      "service": "worker",
      "description": "Path-style addressing, required here",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_HEALTHCHECK_TIMEOUT_SEC",
      "service": "worker",
      "description": "First boot waits for the schema",
      "secret": false,
      "strategy": "default",
      "default": "600"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "worker",
      "description": "Let a running job finish on redeploy",
      "secret": false,
      "strategy": "default",
      "default": "15"
    },
    {
      "key": "TZ",
      "service": "mailpit",
      "description": "Timestamps in the inbox",
      "secret": false,
      "strategy": "default",
      "default": "UTC"
    },
    {
      "key": "PORT",
      "service": "mailpit",
      "description": "Inbox web UI port",
      "secret": false,
      "strategy": "default",
      "default": "8025"
    },
    {
      "key": "SMTP_HOST",
      "service": "mailpit",
      "description": "Private SMTP hostname for solidtime",
      "secret": false,
      "strategy": "default",
      "default": "mailpit.railway.internal"
    },
    {
      "key": "SMTP_PORT",
      "service": "mailpit",
      "description": "Private SMTP port for solidtime",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "MP_UI_AUTH",
      "service": "mailpit",
      "description": "Basic auth for the inbox",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MP_DATABASE",
      "service": "mailpit",
      "description": "Message store on the volume",
      "secret": false,
      "strategy": "default",
      "default": "/data/mailpit.db"
    },
    {
      "key": "MP_MAX_MESSAGES",
      "service": "mailpit",
      "description": "Messages retained before rotation",
      "secret": false,
      "strategy": "default",
      "default": "5000"
    },
    {
      "key": "MP_UI_BIND_ADDR",
      "service": "mailpit",
      "description": "Web UI listen address",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0:8025"
    },
    {
      "key": "MP_SMTP_BIND_ADDR",
      "service": "mailpit",
      "description": "SMTP listener, dual-stack for private callers",
      "secret": false,
      "strategy": "default",
      "default": "[::]:1025"
    },
    {
      "key": "MP_SMTP_MAX_RECIPIENTS",
      "service": "mailpit",
      "description": "Recipient cap per message",
      "secret": false,
      "strategy": "default",
      "default": "100"
    },
    {
      "key": "PORT",
      "service": "solidtime",
      "description": "Port the image's supervisor gives Octane",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "APP_ENV",
      "service": "solidtime",
      "description": "Enables the production config and the API rate limits",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "APP_URL",
      "service": "solidtime",
      "description": "Base URL for links and the Host check",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DB_HOST",
      "service": "solidtime",
      "description": "Private Postgres hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PORT",
      "service": "solidtime",
      "description": "Postgres port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "APP_NAME",
      "service": "solidtime",
      "description": "Product name shown in the UI and in mail",
      "secret": false,
      "strategy": "default",
      "default": "solidtime"
    },
    {
      "key": "APP_DEBUG",
      "service": "solidtime",
      "description": "Never true on a public instance",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "LOG_LEVEL",
      "service": "solidtime",
      "description": "Minimum level written to the log",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "MAIL_HOST",
      "service": "solidtime",
      "description": "Private SMTP host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MAIL_PORT",
      "service": "solidtime",
      "description": "Private SMTP port",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "REDIS_URL",
      "service": "solidtime",
      "description": "Private Redis URL used for the cache",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "S3_BUCKET",
      "service": "solidtime",
      "description": "Bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "S3_REGION",
      "service": "solidtime",
      "description": "Bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ADMIN_NAME",
      "service": "solidtime",
      "description": "First administrator's display name",
      "secret": false,
      "strategy": "default",
      "default": "Admin User"
    },
    {
      "key": "ADMIN_EMAIL",
      "service": "solidtime",
      "description": "First administrator, created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "DB_DATABASE",
      "service": "solidtime",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PASSWORD",
      "service": "solidtime",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_USERNAME",
      "service": "solidtime",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "LOG_CHANNEL",
      "service": "solidtime",
      "description": "Send logs to the deploy log rather than a file",
      "secret": false,
      "strategy": "default",
      "default": "stderr"
    },
    {
      "key": "MAIL_MAILER",
      "service": "solidtime",
      "description": "Send mail over SMTP",
      "secret": false,
      "strategy": "default",
      "default": "smtp"
    },
    {
      "key": "S3_ENDPOINT",
      "service": "solidtime",
      "description": "S3-compatible endpoint URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "CACHE_DRIVER",
      "service": "solidtime",
      "description": "Shared cache across the web, worker and scheduler roles",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "SUPER_ADMINS",
      "service": "solidtime",
      "description": "Comma separated emails that reach the admin panel at /admin",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_CONNECTION",
      "service": "solidtime",
      "description": "solidtime supports PostgreSQL only",
      "secret": false,
      "strategy": "default",
      "default": "pgsql"
    },
    {
      "key": "GOTENBERG_URL",
      "service": "solidtime",
      "description": "PDF rendering service",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "OCTANE_SERVER",
      "service": "solidtime",
      "description": "Application server the image ships",
      "secret": false,
      "strategy": "default",
      "default": "frankenphp"
    },
    {
      "key": "TRUSTED_HOSTS",
      "service": "solidtime",
      "description": "Extra hostnames accepted besides APP_URL",
      "secret": false,
      "strategy": "default",
      "default": "healthcheck.railway.app"
    },
    {
      "key": "ADMIN_PASSWORD",
      "service": "solidtime",
      "description": "First administrator's password, change after login",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "CONTAINER_MODE",
      "service": "solidtime",
      "description": "Runs the FrankenPHP web server role",
      "secret": false,
      "strategy": "default",
      "default": "http"
    },
    {
      "key": "MAIL_FROM_NAME",
      "service": "solidtime",
      "description": "From name on outgoing mail",
      "secret": false,
      "strategy": "default",
      "default": "solidtime"
    },
    {
      "key": "SESSION_DRIVER",
      "service": "solidtime",
      "description": "Sessions survive a redeploy and are shared across replicas",
      "secret": false,
      "strategy": "default",
      "default": "database"
    },
    {
      "key": "APP_FORCE_HTTPS",
      "service": "solidtime",
      "description": "Generate https URLs behind Railway's edge",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "FILESYSTEM_DISK",
      "service": "solidtime",
      "description": "Private files (report exports, imports) live in the bucket",
      "secret": false,
      "strategy": "default",
      "default": "s3"
    },
    {
      "key": "MAIL_ENCRYPTION",
      "service": "solidtime",
      "description": "The bundled inbox advertises no STARTTLS",
      "secret": false,
      "strategy": "default",
      "default": "null"
    },
    {
      "key": "TRUSTED_PROXIES",
      "service": "solidtime",
      "description": "Trust every hop, so the leftmost X-Forwarded-For entry wins",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0/0,::/0"
    },
    {
      "key": "AUDITING_ENABLED",
      "service": "solidtime",
      "description": "Record an audit trail of model changes",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "QUEUE_CONNECTION",
      "service": "solidtime",
      "description": "Queue backed by Postgres, drained by the worker service",
      "secret": false,
      "strategy": "default",
      "default": "database"
    },
    {
      "key": "S3_ACCESS_KEY_ID",
      "service": "solidtime",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SESSION_LIFETIME",
      "service": "solidtime",
      "description": "Session lifetime in minutes",
      "secret": false,
      "strategy": "default",
      "default": "120"
    },
    {
      "key": "MAIL_FROM_ADDRESS",
      "service": "solidtime",
      "description": "From address on outgoing mail",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "TELESCOPE_ENABLED",
      "service": "solidtime",
      "description": "Laravel Telescope stays off in production",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "S3_SECRET_ACCESS_KEY",
      "service": "solidtime",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PUBLIC_FILESYSTEM_DISK",
      "service": "solidtime",
      "description": "Profile photos stay on the volume, which is served over HTTP",
      "secret": false,
      "strategy": "default",
      "default": "public"
    },
    {
      "key": "APP_ENABLE_REGISTRATION",
      "service": "solidtime",
      "description": "on, invite-only or off",
      "secret": false,
      "strategy": "default",
      "default": "invite-only"
    },
    {
      "key": "S3_USE_PATH_STYLE_ENDPOINT",
      "service": "solidtime",
      "description": "Path-style addressing, required here",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_HEALTHCHECK_TIMEOUT_SEC",
      "service": "solidtime",
      "description": "First boot installs the schema and elects the keys",
      "secret": false,
      "strategy": "default",
      "default": "600"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "solidtime",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "15"
    },
    {
      "key": "PORT",
      "service": "scheduler",
      "description": "Port for the wrapper's liveness endpoint",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "APP_ENV",
      "service": "scheduler",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "APP_URL",
      "service": "scheduler",
      "description": "Base URL for links in scheduled mail",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DB_HOST",
      "service": "scheduler",
      "description": "Private Postgres hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PORT",
      "service": "scheduler",
      "description": "Postgres port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "APP_NAME",
      "service": "scheduler",
      "description": "Product name used in scheduled mail",
      "secret": false,
      "strategy": "default",
      "default": "solidtime"
    },
    {
      "key": "APP_DEBUG",
      "service": "scheduler",
      "description": "Never true on a public instance",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "LOG_LEVEL",
      "service": "scheduler",
      "description": "Minimum level written to the log",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "MAIL_HOST",
      "service": "scheduler",
      "description": "Private SMTP host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MAIL_PORT",
      "service": "scheduler",
      "description": "Private SMTP port",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "REDIS_URL",
      "service": "scheduler",
      "description": "Private Redis URL used for the cache",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "S3_BUCKET",
      "service": "scheduler",
      "description": "Bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "S3_REGION",
      "service": "scheduler",
      "description": "Bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_DATABASE",
      "service": "scheduler",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PASSWORD",
      "service": "scheduler",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_USERNAME",
      "service": "scheduler",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "LOG_CHANNEL",
      "service": "scheduler",
      "description": "Send logs to the deploy log",
      "secret": false,
      "strategy": "default",
      "default": "stderr"
    },
    {
      "key": "MAIL_MAILER",
      "service": "scheduler",
      "description": "Send mail over SMTP",
      "secret": false,
      "strategy": "default",
      "default": "smtp"
    },
    {
      "key": "S3_ENDPOINT",
      "service": "scheduler",
      "description": "S3-compatible endpoint URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "CACHE_DRIVER",
      "service": "scheduler",
      "description": "Shared cache across roles",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "DB_CONNECTION",
      "service": "scheduler",
      "description": "solidtime supports PostgreSQL only",
      "secret": false,
      "strategy": "default",
      "default": "pgsql"
    },
    {
      "key": "GOTENBERG_URL",
      "service": "scheduler",
      "description": "PDF rendering service",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "CONTAINER_MODE",
      "service": "scheduler",
      "description": "Runs artisan schedule:run every minute",
      "secret": false,
      "strategy": "default",
      "default": "scheduler"
    },
    {
      "key": "MAIL_FROM_NAME",
      "service": "scheduler",
      "description": "From name on outgoing mail",
      "secret": false,
      "strategy": "default",
      "default": "solidtime"
    },
    {
      "key": "SESSION_DRIVER",
      "service": "scheduler",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "database"
    },
    {
      "key": "APP_FORCE_HTTPS",
      "service": "scheduler",
      "description": "Generate https URLs",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "FILESYSTEM_DISK",
      "service": "scheduler",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "s3"
    },
    {
      "key": "MAIL_ENCRYPTION",
      "service": "scheduler",
      "description": "The bundled inbox advertises no STARTTLS",
      "secret": false,
      "strategy": "default",
      "default": "null"
    },
    {
      "key": "QUEUE_CONNECTION",
      "service": "scheduler",
      "description": "Scheduled work is dispatched onto the same queue",
      "secret": false,
      "strategy": "default",
      "default": "database"
    },
    {
      "key": "S3_ACCESS_KEY_ID",
      "service": "scheduler",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MAIL_FROM_ADDRESS",
      "service": "scheduler",
      "description": "From address on outgoing mail",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "S3_SECRET_ACCESS_KEY",
      "service": "scheduler",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PUBLIC_FILESYSTEM_DISK",
      "service": "scheduler",
      "description": "Matches the web service",
      "secret": false,
      "strategy": "default",
      "default": "public"
    },
    {
      "key": "S3_USE_PATH_STYLE_ENDPOINT",
      "service": "scheduler",
      "description": "Path-style addressing, required here",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_HEALTHCHECK_TIMEOUT_SEC",
      "service": "scheduler",
      "description": "First boot waits for the schema",
      "secret": false,
      "strategy": "default",
      "default": "600"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "scheduler",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "15"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "solidtime-1"
      }
    },
    "cli": "railway deploy --template solidtime-1",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "7bc13bd3-047b-4733-9f9b-ac164f600bb5",
            "serializedConfig": {
              "buckets": {
                "3969c170-349a-4a7c-ba36-8a9cc67d5dee": {
                  "name": "solidtime-files"
                }
              },
              "services": {
                "3c95859e-e89f-4d09-bc15-f1a11b13c289": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/redis.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": "Data panel alias",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection URL",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Redis auth password",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "3c95859e-e89f-4d09-bc15-f1a11b13c289": {
                      "mountPath": "/data"
                    }
                  }
                },
                "7784f4ae-05b4-469e-8652-af968676ee69": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/gotenberg.png",
                  "name": "gotenberg",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/health",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "gotenberg/gotenberg:8"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "API port, also the health check port",
                      "defaultValue": "3000"
                    }
                  }
                },
                "8f59ab52-309e-4c8b-8c86-e44ad32098af": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/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": "Cluster directory, one level below the mount",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database created on first boot",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection URL",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Superuser name",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Lifetime of the generated server certificate",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "8f59ab52-309e-4c8b-8c86-e44ad32098af": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "9a66e0ab-13e5-40f4-aea7-349c334ae899": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/solidtime.svg",
                  "name": "worker",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/solidtime-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Port for the wrapper's liveness endpoint",
                      "defaultValue": "8080"
                    },
                    "APP_ENV": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "production"
                    },
                    "APP_URL": {
                      "isOptional": false,
                      "description": "Base URL for links in queued mail",
                      "defaultValue": "https://${{solidtime.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DB_HOST": {
                      "isOptional": false,
                      "description": "Private Postgres hostname",
                      "defaultValue": "${{Postgres.PGHOST}}"
                    },
                    "DB_PORT": {
                      "isOptional": false,
                      "description": "Postgres port",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "APP_NAME": {
                      "isOptional": true,
                      "description": "Product name used in queued mail",
                      "defaultValue": "solidtime"
                    },
                    "APP_DEBUG": {
                      "isOptional": false,
                      "description": "Never true on a public instance",
                      "defaultValue": "false"
                    },
                    "LOG_LEVEL": {
                      "isOptional": true,
                      "description": "Minimum level written to the log",
                      "defaultValue": "info"
                    },
                    "MAIL_HOST": {
                      "isOptional": false,
                      "description": "Private SMTP host",
                      "defaultValue": "${{mailpit.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "MAIL_PORT": {
                      "isOptional": false,
                      "description": "Private SMTP port",
                      "defaultValue": "1025"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private Redis URL used for the cache",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "S3_BUCKET": {
                      "isOptional": false,
                      "description": "Bucket name",
                      "defaultValue": "${{solidtime-files.BUCKET}}"
                    },
                    "S3_REGION": {
                      "isOptional": false,
                      "description": "Bucket region",
                      "defaultValue": "${{solidtime-files.REGION}}"
                    },
                    "DB_DATABASE": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "DB_USERNAME": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "LOG_CHANNEL": {
                      "isOptional": false,
                      "description": "Send logs to the deploy log",
                      "defaultValue": "stderr"
                    },
                    "MAIL_MAILER": {
                      "isOptional": false,
                      "description": "Send mail over SMTP",
                      "defaultValue": "smtp"
                    },
                    "S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "S3-compatible endpoint URL",
                      "defaultValue": "${{solidtime-files.ENDPOINT}}"
                    },
                    "CACHE_DRIVER": {
                      "isOptional": false,
                      "description": "Shared cache across roles",
                      "defaultValue": "redis"
                    },
                    "DB_CONNECTION": {
                      "isOptional": false,
                      "description": "solidtime supports PostgreSQL only",
                      "defaultValue": "pgsql"
                    },
                    "GOTENBERG_URL": {
                      "isOptional": false,
                      "description": "PDF rendering service",
                      "defaultValue": "http://${{gotenberg.RAILWAY_PRIVATE_DOMAIN}}:3000"
                    },
                    "CONTAINER_MODE": {
                      "isOptional": false,
                      "description": "Runs the Laravel queue worker role",
                      "defaultValue": "worker"
                    },
                    "MAIL_FROM_NAME": {
                      "isOptional": true,
                      "description": "From name on outgoing mail",
                      "defaultValue": "solidtime"
                    },
                    "SESSION_DRIVER": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "database"
                    },
                    "WORKER_COMMAND": {
                      "isOptional": false,
                      "description": "Command supervised in worker mode",
                      "defaultValue": "php /var/www/html/artisan queue:work --queue=default --sleep=3 --tries=3 --timeout=300 --max-time=3600"
                    },
                    "APP_FORCE_HTTPS": {
                      "isOptional": false,
                      "description": "Generate https URLs",
                      "defaultValue": "true"
                    },
                    "FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Exports written here are downloaded through the web service",
                      "defaultValue": "s3"
                    },
                    "MAIL_ENCRYPTION": {
                      "isOptional": false,
                      "description": "The bundled inbox advertises no STARTTLS",
                      "defaultValue": "null"
                    },
                    "QUEUE_CONNECTION": {
                      "isOptional": false,
                      "description": "Queue backed by Postgres",
                      "defaultValue": "database"
                    },
                    "S3_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{solidtime-files.ACCESS_KEY_ID}}"
                    },
                    "MAIL_FROM_ADDRESS": {
                      "isOptional": false,
                      "description": "From address on outgoing mail",
                      "defaultValue": "no-reply@${{solidtime.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "S3_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{solidtime-files.SECRET_ACCESS_KEY}}"
                    },
                    "PUBLIC_FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "public"
                    },
                    "S3_USE_PATH_STYLE_ENDPOINT": {
                      "isOptional": false,
                      "description": "Path-style addressing, required here",
                      "defaultValue": "true"
                    },
                    "RAILWAY_HEALTHCHECK_TIMEOUT_SEC": {
                      "isOptional": false,
                      "description": "First boot waits for the schema",
                      "defaultValue": "600"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Let a running job finish on redeploy",
                      "defaultValue": "15"
                    }
                  }
                },
                "ab23709c-6af4-4ff3-88dd-daaebbac7904": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/mailpit.svg",
                  "name": "mailpit",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/livez",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "axllent/mailpit:latest"
                  },
                  "variables": {
                    "TZ": {
                      "isOptional": true,
                      "description": "Timestamps in the inbox",
                      "defaultValue": "UTC"
                    },
                    "PORT": {
                      "isOptional": false,
                      "description": "Inbox web UI port",
                      "defaultValue": "8025"
                    },
                    "SMTP_HOST": {
                      "isOptional": false,
                      "description": "Private SMTP hostname for solidtime",
                      "defaultValue": "mailpit.railway.internal"
                    },
                    "SMTP_PORT": {
                      "isOptional": false,
                      "description": "Private SMTP port for solidtime",
                      "defaultValue": "1025"
                    },
                    "MP_UI_AUTH": {
                      "isOptional": false,
                      "description": "Basic auth for the inbox",
                      "defaultValue": "{{MP_UI_AUTH}}"
                    },
                    "MP_DATABASE": {
                      "isOptional": false,
                      "description": "Message store on the volume",
                      "defaultValue": "/data/mailpit.db"
                    },
                    "MP_MAX_MESSAGES": {
                      "isOptional": true,
                      "description": "Messages retained before rotation",
                      "defaultValue": "5000"
                    },
                    "MP_UI_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Web UI listen address",
                      "defaultValue": "0.0.0.0:8025"
                    },
                    "MP_SMTP_BIND_ADDR": {
                      "isOptional": false,
                      "description": "SMTP listener, dual-stack for private callers",
                      "defaultValue": "[::]:1025"
                    },
                    "MP_SMTP_MAX_RECIPIENTS": {
                      "isOptional": true,
                      "description": "Recipient cap per message",
                      "defaultValue": "100"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8025": {
                        "port": 8025
                      }
                    }
                  },
                  "volumeMounts": {
                    "ab23709c-6af4-4ff3-88dd-daaebbac7904": {
                      "mountPath": "/data"
                    }
                  }
                },
                "ef39bc9d-e136-49cb-b7e6-f44b9311dab9": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/solidtime.svg",
                  "name": "solidtime",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/login",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/solidtime-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Port the image's supervisor gives Octane",
                      "defaultValue": "8000"
                    },
                    "APP_ENV": {
                      "isOptional": false,
                      "description": "Enables the production config and the API rate limits",
                      "defaultValue": "production"
                    },
                    "APP_URL": {
                      "isOptional": false,
                      "description": "Base URL for links and the Host check",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DB_HOST": {
                      "isOptional": false,
                      "description": "Private Postgres hostname",
                      "defaultValue": "${{Postgres.PGHOST}}"
                    },
                    "DB_PORT": {
                      "isOptional": false,
                      "description": "Postgres port",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "APP_NAME": {
                      "isOptional": true,
                      "description": "Product name shown in the UI and in mail",
                      "defaultValue": "solidtime"
                    },
                    "APP_DEBUG": {
                      "isOptional": false,
                      "description": "Never true on a public instance",
                      "defaultValue": "false"
                    },
                    "LOG_LEVEL": {
                      "isOptional": true,
                      "description": "Minimum level written to the log",
                      "defaultValue": "info"
                    },
                    "MAIL_HOST": {
                      "isOptional": false,
                      "description": "Private SMTP host",
                      "defaultValue": "${{mailpit.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "MAIL_PORT": {
                      "isOptional": false,
                      "description": "Private SMTP port",
                      "defaultValue": "1025"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private Redis URL used for the cache",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "S3_BUCKET": {
                      "isOptional": false,
                      "description": "Bucket name",
                      "defaultValue": "${{solidtime-files.BUCKET}}"
                    },
                    "S3_REGION": {
                      "isOptional": false,
                      "description": "Bucket region",
                      "defaultValue": "${{solidtime-files.REGION}}"
                    },
                    "ADMIN_NAME": {
                      "isOptional": true,
                      "description": "First administrator's display name",
                      "defaultValue": "Admin User"
                    },
                    "ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First administrator, created on first boot",
                      "defaultValue": "admin@example.com"
                    },
                    "DB_DATABASE": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "DB_USERNAME": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "LOG_CHANNEL": {
                      "isOptional": false,
                      "description": "Send logs to the deploy log rather than a file",
                      "defaultValue": "stderr"
                    },
                    "MAIL_MAILER": {
                      "isOptional": false,
                      "description": "Send mail over SMTP",
                      "defaultValue": "smtp"
                    },
                    "S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "S3-compatible endpoint URL",
                      "defaultValue": "${{solidtime-files.ENDPOINT}}"
                    },
                    "CACHE_DRIVER": {
                      "isOptional": false,
                      "description": "Shared cache across the web, worker and scheduler roles",
                      "defaultValue": "redis"
                    },
                    "SUPER_ADMINS": {
                      "isOptional": false,
                      "description": "Comma separated emails that reach the admin panel at /admin",
                      "defaultValue": "${{ADMIN_EMAIL}}"
                    },
                    "DB_CONNECTION": {
                      "isOptional": false,
                      "description": "solidtime supports PostgreSQL only",
                      "defaultValue": "pgsql"
                    },
                    "GOTENBERG_URL": {
                      "isOptional": false,
                      "description": "PDF rendering service",
                      "defaultValue": "http://${{gotenberg.RAILWAY_PRIVATE_DOMAIN}}:3000"
                    },
                    "OCTANE_SERVER": {
                      "isOptional": false,
                      "description": "Application server the image ships",
                      "defaultValue": "frankenphp"
                    },
                    "TRUSTED_HOSTS": {
                      "isOptional": true,
                      "description": "Extra hostnames accepted besides APP_URL",
                      "defaultValue": "healthcheck.railway.app"
                    },
                    "ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First administrator's password, change after login",
                      "defaultValue": "{{ADMIN_PASSWORD}}"
                    },
                    "CONTAINER_MODE": {
                      "isOptional": false,
                      "description": "Runs the FrankenPHP web server role",
                      "defaultValue": "http"
                    },
                    "MAIL_FROM_NAME": {
                      "isOptional": true,
                      "description": "From name on outgoing mail",
                      "defaultValue": "solidtime"
                    },
                    "SESSION_DRIVER": {
                      "isOptional": false,
                      "description": "Sessions survive a redeploy and are shared across replicas",
                      "defaultValue": "database"
                    },
                    "APP_FORCE_HTTPS": {
                      "isOptional": false,
                      "description": "Generate https URLs behind Railway's edge",
                      "defaultValue": "true"
                    },
                    "FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Private files (report exports, imports) live in the bucket",
                      "defaultValue": "s3"
                    },
                    "MAIL_ENCRYPTION": {
                      "isOptional": false,
                      "description": "The bundled inbox advertises no STARTTLS",
                      "defaultValue": "null"
                    },
                    "TRUSTED_PROXIES": {
                      "isOptional": false,
                      "description": "Trust every hop, so the leftmost X-Forwarded-For entry wins",
                      "defaultValue": "0.0.0.0/0,::/0"
                    },
                    "AUDITING_ENABLED": {
                      "isOptional": true,
                      "description": "Record an audit trail of model changes",
                      "defaultValue": "true"
                    },
                    "QUEUE_CONNECTION": {
                      "isOptional": false,
                      "description": "Queue backed by Postgres, drained by the worker service",
                      "defaultValue": "database"
                    },
                    "S3_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{solidtime-files.ACCESS_KEY_ID}}"
                    },
                    "SESSION_LIFETIME": {
                      "isOptional": true,
                      "description": "Session lifetime in minutes",
                      "defaultValue": "120"
                    },
                    "MAIL_FROM_ADDRESS": {
                      "isOptional": false,
                      "description": "From address on outgoing mail",
                      "defaultValue": "no-reply@${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "TELESCOPE_ENABLED": {
                      "isOptional": true,
                      "description": "Laravel Telescope stays off in production",
                      "defaultValue": "false"
                    },
                    "S3_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{solidtime-files.SECRET_ACCESS_KEY}}"
                    },
                    "PUBLIC_FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Profile photos stay on the volume, which is served over HTTP",
                      "defaultValue": "public"
                    },
                    "APP_ENABLE_REGISTRATION": {
                      "isOptional": false,
                      "description": "on, invite-only or off",
                      "defaultValue": "invite-only"
                    },
                    "S3_USE_PATH_STYLE_ENDPOINT": {
                      "isOptional": false,
                      "description": "Path-style addressing, required here",
                      "defaultValue": "true"
                    },
                    "RAILWAY_HEALTHCHECK_TIMEOUT_SEC": {
                      "isOptional": false,
                      "description": "First boot installs the schema and elects the keys",
                      "defaultValue": "600"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "15"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8000": {
                        "port": 8000
                      }
                    }
                  },
                  "volumeMounts": {
                    "ef39bc9d-e136-49cb-b7e6-f44b9311dab9": {
                      "mountPath": "/var/www/html/storage/app/public"
                    }
                  }
                },
                "faf4057c-056e-481e-a990-f8247ea680e5": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/solidtime.svg",
                  "name": "scheduler",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/solidtime-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Port for the wrapper's liveness endpoint",
                      "defaultValue": "8080"
                    },
                    "APP_ENV": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "production"
                    },
                    "APP_URL": {
                      "isOptional": false,
                      "description": "Base URL for links in scheduled mail",
                      "defaultValue": "https://${{solidtime.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DB_HOST": {
                      "isOptional": false,
                      "description": "Private Postgres hostname",
                      "defaultValue": "${{Postgres.PGHOST}}"
                    },
                    "DB_PORT": {
                      "isOptional": false,
                      "description": "Postgres port",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "APP_NAME": {
                      "isOptional": true,
                      "description": "Product name used in scheduled mail",
                      "defaultValue": "solidtime"
                    },
                    "APP_DEBUG": {
                      "isOptional": false,
                      "description": "Never true on a public instance",
                      "defaultValue": "false"
                    },
                    "LOG_LEVEL": {
                      "isOptional": true,
                      "description": "Minimum level written to the log",
                      "defaultValue": "info"
                    },
                    "MAIL_HOST": {
                      "isOptional": false,
                      "description": "Private SMTP host",
                      "defaultValue": "${{mailpit.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "MAIL_PORT": {
                      "isOptional": false,
                      "description": "Private SMTP port",
                      "defaultValue": "1025"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private Redis URL used for the cache",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "S3_BUCKET": {
                      "isOptional": false,
                      "description": "Bucket name",
                      "defaultValue": "${{solidtime-files.BUCKET}}"
                    },
                    "S3_REGION": {
                      "isOptional": false,
                      "description": "Bucket region",
                      "defaultValue": "${{solidtime-files.REGION}}"
                    },
                    "DB_DATABASE": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "DB_USERNAME": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "LOG_CHANNEL": {
                      "isOptional": false,
                      "description": "Send logs to the deploy log",
                      "defaultValue": "stderr"
                    },
                    "MAIL_MAILER": {
                      "isOptional": false,
                      "description": "Send mail over SMTP",
                      "defaultValue": "smtp"
                    },
                    "S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "S3-compatible endpoint URL",
                      "defaultValue": "${{solidtime-files.ENDPOINT}}"
                    },
                    "CACHE_DRIVER": {
                      "isOptional": false,
                      "description": "Shared cache across roles",
                      "defaultValue": "redis"
                    },
                    "DB_CONNECTION": {
                      "isOptional": false,
                      "description": "solidtime supports PostgreSQL only",
                      "defaultValue": "pgsql"
                    },
                    "GOTENBERG_URL": {
                      "isOptional": false,
                      "description": "PDF rendering service",
                      "defaultValue": "http://${{gotenberg.RAILWAY_PRIVATE_DOMAIN}}:3000"
                    },
                    "CONTAINER_MODE": {
                      "isOptional": false,
                      "description": "Runs artisan schedule:run every minute",
                      "defaultValue": "scheduler"
                    },
                    "MAIL_FROM_NAME": {
                      "isOptional": true,
                      "description": "From name on outgoing mail",
                      "defaultValue": "solidtime"
                    },
                    "SESSION_DRIVER": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "database"
                    },
                    "APP_FORCE_HTTPS": {
                      "isOptional": false,
                      "description": "Generate https URLs",
                      "defaultValue": "true"
                    },
                    "FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "s3"
                    },
                    "MAIL_ENCRYPTION": {
                      "isOptional": false,
                      "description": "The bundled inbox advertises no STARTTLS",
                      "defaultValue": "null"
                    },
                    "QUEUE_CONNECTION": {
                      "isOptional": false,
                      "description": "Scheduled work is dispatched onto the same queue",
                      "defaultValue": "database"
                    },
                    "S3_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{solidtime-files.ACCESS_KEY_ID}}"
                    },
                    "MAIL_FROM_ADDRESS": {
                      "isOptional": false,
                      "description": "From address on outgoing mail",
                      "defaultValue": "no-reply@${{solidtime.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "S3_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{solidtime-files.SECRET_ACCESS_KEY}}"
                    },
                    "PUBLIC_FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Matches the web service",
                      "defaultValue": "public"
                    },
                    "S3_USE_PATH_STYLE_ENDPOINT": {
                      "isOptional": false,
                      "description": "Path-style addressing, required here",
                      "defaultValue": "true"
                    },
                    "RAILWAY_HEALTHCHECK_TIMEOUT_SEC": {
                      "isOptional": false,
                      "description": "First boot waits for the schema",
                      "defaultValue": "600"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "15"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "mailpit",
      "method": "GET",
      "path": "/livez",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 7,
    "needs_volume": true
  },
  "generated_at": "2026-09-04T05:44:27.711Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-04T05:43:37.373Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_908b573e9a8640efa490",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 152,
    "typical_workflow_seconds": 6,
    "typical_queue_seconds": 40,
    "typical_init_seconds": 0,
    "typical_build_seconds": 50,
    "typical_deploy_seconds": 10,
    "typical_healthcheck_lag_seconds": 0,
    "slowest_service": "scheduler"
  }
}
