Put the simulator configuration file in src/assets.
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 15 Apr 2020 17:41:11 +0000 (19:41 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 15 Apr 2020 17:41:11 +0000 (19:41 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.gitignore
README.md
docker/Dockerfile
src/assets/config-template.json [moved from src/config-template.json with 100% similarity]
src/utils/Configuration.js

index ea6e6ea40af15a1a29ae19e2316a2728fe56c7f7..0e351bb90e42074985113e2d38f392b595113c22 100644 (file)
@@ -1,5 +1,5 @@
 # config
-src/config.json
+src/assets/config.json
 manifest.yml
 
 # Logs
@@ -64,4 +64,4 @@ build/config.gypi
 *~
 
 # Clinic
-*.clinic-*
\ No newline at end of file
+*.clinic-*
index 2a77dc14a999b7655f45a7ef845165938c25df55..bf387f9f84f5c2515da20a5112533d7fabd8af9c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Simple node program to simulate a set of charging stations based on OCPP 1.6 pro
 
 To run the program start: `npm start`.
 
-All the parameters and control of the program are within the config.json file.
+All the parameters and control of the program are within the src/assets/config.json file. A configuration template file is available at src/assets/config-template.json.
 
 ## License
 
index d681e2950399916ea01b8f273c7757688bd9b2af..32ef353daf68a062e96b3fa9c108f0a472e6330c 100644 (file)
@@ -15,7 +15,7 @@ COPY --from=builder /usr/builder/node_modules ./node_modules
 COPY NOTICE LICENSE ./
 COPY src ./src
 COPY *.json ./
-COPY docker/config.json ./src/config.json
+COPY docker/config.json ./src/assets/config.json
 COPY docker/autoconfig.sh /autoconfig.sh
 RUN chmod +x /autoconfig.sh
 
index 4ed9cb7db3fd3c95b3d42b46e36d3fd1a4da53ea..7fdfbe2d77a0fb360197e403165b1e7d4d0eab0a 100644 (file)
@@ -1,4 +1,4 @@
-const config = require('../config.json');
+const config = require('../assets/config.json');
 
 class Configuration {
   // Read the config file