fnctl: add application level configuration (#247)

Fixes #233
This commit is contained in:
C Cirello
2016-11-09 22:59:24 +01:00
committed by Travis Reeder
parent 04c5ef6507
commit 6af57c2bdb
6 changed files with 107 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ swagger: '2.0'
info:
title: IronFunctions
description:
version: "0.0.13"
version: "0.0.14"
# the domain of the service
host: "127.0.0.1:8080"
# array of all schemes that your API supports
@@ -287,7 +287,7 @@ definitions:
description: Route type
config:
type: object
description: Route configuration
description: Route configuration - overrides application configuration
additionalProperties:
type: string
@@ -298,6 +298,11 @@ definitions:
type: string
description: "Name of this app. Must be different than the image name. Can ony contain alphanumeric, -, and _."
readOnly: true
config:
type: object
description: Application configuration
additionalProperties:
type: string
RoutesWrapper:
type: object