Skip to content

Commit

Permalink
Add set/get Config #13
Browse files Browse the repository at this point in the history
  • Loading branch information
a6b8 committed Mar 17, 2024
1 parent 4dff79d commit b4d3294
Show file tree
Hide file tree
Showing 9 changed files with 391 additions and 224 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ const routes = [ {
{
'routeId': 'local',
'routeType': 'local',
'outFolder': '/out',
'fileName': 'out.txt',
'destinationFolder': '/out',
'destinationFileName': 'out.txt',
'concurrentRequestsPerLoop': 3,
'delayPerLoopInMs': 3000
}
Expand Down
15 changes: 12 additions & 3 deletions src/data/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,21 @@ const config = {
},
'console': {
'emojis': {
'route': '🌟',
'Open': '🌟',
'Closed': '🔒',
'loop': '🔁',
}
},
'table': [
[ 12, 'left' ],
[ 20, 'left' ],
[ 4, 'right' ],
[ 10, 'right' ],
[ 6, 'left' ]
]
},
'events': {
'channelName': 'exporterResponse'
'routeStatus': 'exporterRouteStatus',
'routeLoopUpdate': 'exporterRouteLoopUpdate',
}
}

Expand Down
Loading

0 comments on commit b4d3294

Please # to comment.