---
applications:
{{#if this.instances}}
- instances: {{{this.instances}}}
{{/if}}
  timeout: 180
  {{#if this.name }}
  name: {{{this.name}}}
  {{/if ~}}
  {{#if this.buildpack }}
  buildpack: {{{this.buildpack}}}
  {{/if ~}}
  {{#if this.command }}
  command: {{{this.command}}}
  {{/if ~}}
  {{#if this.path }}
  path: {{{this.path}}}
  {{/if ~}}
  {{#if this.disk_quota }}
  disk_quota: {{{this.disk_quota}}}
  {{/if ~}}
  {{#if this.memory }}
  memory: {{{this.memory}}}
  {{/if ~}}
  {{#if this.domain }}
  domain: {{{this.domain}}}
  {{/if ~}}
  {{#if this.host }}
  host: {{{this.host}}}
  {{else}}
  random-route: true
  {{/if ~}}
  {{#if this.health-check-type}}
  health-check-type: {{{this.health-check-type}}}
  {{/if ~}}
  {{#if this.health-check-http-endpoint}}
  health-check-http-endpoint: {{{this.health-check-http-endpoint}}}
  {{/if ~}}
  {{#if this.services}}
  services:
  {{#each this.services}}
    - {{{this}}}
  {{/each}}
  {{/if ~}}
  {{#if this.env}}
  env:
  {{#each this.env}}
    {{{@key}}} : {{{this}}}
  {{/each}}
  {{/if ~}}
