Skip to content

Commit

Permalink
add config to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Oct 10, 2017
1 parent f99523d commit 0fdf839
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .fusio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,8 @@ connection: !include resources/connections.yaml
# Contains migrations for specific connections.
# Documentation: http://fusio.readthedocs.io/en/latest/deploy.html#migration
migration: !include resources/migrations.yaml

# ------------------------------------------------------------------------------
# Contains general system settings
# Documentation: http://fusio.readthedocs.io/en/latest/deploy.html#config
config: !include resources/config.yaml
29 changes: 29 additions & 0 deletions resources/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# If true the status of a new app is PENDING so that an administrator has to
# manually activate the app
app_approval: 0
# The max amount of apps a consumer can register
app_consumer: 16
# If a user registers through the consumer API the following scopes are assigned
scopes_default: "authorization,consumer"
# Subject of the activation mail
mail_register_subject: "Fusio registration"
# Body of the activation mail
mail_register_body: >
Hello {name},
you have successful registered at Fusio.
To activate you account please visit the following url:
http://127.0.0.1/projects/fusio/public/consumer/#activate?token={token}
# Email address which is used in the "From" header
mail_sender: ""
# Facebook app secret
provider_facebook_secret: ""
# Google app secret
provider_google_secret: ""
# GitHub app secret
provider_github_secret: ""
# ReCaptcha secret
recaptcha_secret: ""
# If set each API response contains a Access-Control-Allow-Origin header with
# the provided value
cors_allow_origin: "*"

0 comments on commit 0fdf839

Please sign in to comment.