Created media folders for ResourceDictionary
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / main / resources / application-dev.properties
1 #
2 #  Copyright � 2017-2018 AT&T Intellectual Property.
3 #
4 #  Modifications Copyright © 2019 IBM, Bell Canada.
5 #
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #
18 #logging.level.web=DEBUG
19
20 # Web server config
21 server.port=8081
22
23 blueprintsprocessor.grpcEnable=false
24 blueprintsprocessor.httpPort=8081
25 blueprintsprocessor.grpcPort=9111
26 ###NOTE: for remote executor tests, need to enable grpc and it's properties.
27 ###blueprintsprocessor.grpcEnable=false
28 # Assuming running locally 
29 ###blueprintsprocessor.grpcclient.remote-python.type=token-auth
30 ###blueprintsprocessor.grpcclient.remote-python.host=localhost
31 ###blueprintsprocessor.grpcclient.remote-python.port=50051
32 ###blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
33
34 # Blueprint Processor File Execution and Handling Properties
35 ### use absolute paths if testing inside docker
36 ### blueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
37 ### blueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
38 ### blueprintsprocessor.blueprintWorkingPath=/opt/app/onap/blueprints/working
39 blueprintsprocessor.blueprintDeployPath=blueprints/deploy
40 blueprintsprocessor.blueprintArchivePath=blueprints/archive
41 blueprintsprocessor.blueprintWorkingPath=blueprints/work
42 # Primary Database Configuration
43 blueprintsprocessor.db.primary.url=jdbc:mysql://localhost:3306/sdnctl
44 blueprintsprocessor.db.primary.username=sdnctl
45 blueprintsprocessor.db.primary.password=sdnctl
46 blueprintsprocessor.db.primary.driverClassName=org.mariadb.jdbc.Driver
47 blueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
48 blueprintsprocessor.db.primary.hibernateDDLAuto=none
49 blueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
50 blueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
51
52 # Python executor
53 ### If testing in docker, use the absolute paths as Docker view of filesystem will not respect relative paths.
54 ### Don't forget to create directory /opt/app/onap and share it with Docker containers on your system.
55 ###blueprints.processor.functions.python.executor.executionPath=/opt/app/onap/scripts/jython/ccsdk_blueprints
56 ###blueprints.processor.functions.python.executor.modulePaths=/opt/app/onap/scripts/jython/ccsdk_blueprints,/opt/app/onap/scripts/jython/ccsdk_netconf,/opt/app/onap/scripts/jython/ccsdk_restconf
57
58 blueprints.processor.functions.python.executor.executionPath=./../../../components/scripts/python/ccsdk_blueprints
59 blueprints.processor.functions.python.executor.modulePaths=./../../../components/scripts/python/ccsdk_blueprints
60
61 # SDN-C's ODL Restconf Connection Details
62 blueprintsprocessor.restconfEnabled=true
63 blueprintsprocessor.restclient.sdncodl.type=basic-auth
64 blueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
65 blueprintsprocessor.restclient.sdncodl.username=admin
66 blueprintsprocessor.restclient.sdncodl.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
67
68 # Executor Options
69 blueprintprocessor.resourceResolution.enabled=true
70 blueprintprocessor.netconfExecutor.enabled=true
71 blueprintprocessor.restConfExecutor.enabled=true
72 blueprintsprocessor.cliExecutor.enabled=true
73 ### If enabling remote python executor, set this value to true
74 ### blueprintprocessor.remoteScriptCommand.enabled=true
75 blueprintprocessor.remoteScriptCommand.enabled=false