forked from apioo/fusio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.fusio.yml
27 lines (23 loc) · 1.49 KB
/
.fusio.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This deploy configuration contains all routes, schemas and connections of the
# app. The configuration can be deployed through the following command:
# > php bin/fusio deploy
# ------------------------------------------------------------------------------
# Contains all available routes of the app. Each route reference a yaml file
# which defines the request/response schema and the action which gets executed.
# Documentation: http://fusio.readthedocs.io/en/latest/deploy.html#routes
routes: !include resources/routes.yaml
# ------------------------------------------------------------------------------
# Contains all available schema definitions. Each schema reference a json file
# which contains a json schema. These schema names can be referenced in a route.
# Documentation: http://fusio.readthedocs.io/en/latest/deploy.html#schema
schema: !include resources/schemas.yaml
# ------------------------------------------------------------------------------
# Contains all available connections to remote services i.e. a database or
# mongodb connection. These connections can be used inside an action to produce
# a response or insert data from a request.
# Documentation: http://fusio.readthedocs.io/en/latest/deploy.html#connection
connection: !include resources/connections.yaml
# ------------------------------------------------------------------------------
# Contains general system settings
# Documentation: http://fusio.readthedocs.io/en/latest/deploy.html#config
config: !include resources/config.yaml