forked from platypush/platypush
[WIP] Default config.yaml in case a configuration file is missing in the default locations
This commit is contained in:
parent
12887b61fe
commit
a80adc996f
3 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
recursive-include platypush/backend/http/webapp/dist *
|
||||
include platypush/plugins/http/webpage/mercury-parser.js
|
||||
include platypush/config/*.yaml
|
||||
global-include manifest.yaml
|
||||
|
|
7
platypush/config/config.auto.yaml
Normal file
7
platypush/config/config.auto.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Auto-generated configuration file.
|
||||
# Do not edit manually - use the config.yaml file for manual modifications
|
||||
# instead
|
||||
|
||||
backend.http:
|
||||
port: 8008
|
||||
websocket_port: 8009
|
2
platypush/config/config.default.yaml
Normal file
2
platypush/config/config.default.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
include:
|
||||
- config.auto.yaml
|
Loading…
Reference in a new issue