Uploaded sample files
This commit is contained in:
@@ -0,0 +1,32 @@
|
|||||||
|
module.exports = {
|
||||||
|
version: "1.0",
|
||||||
|
name: "CRTelemetry",
|
||||||
|
program: "Throttle & Motor Mapping",
|
||||||
|
host: "192.168.117.128",
|
||||||
|
protocol: "http",
|
||||||
|
port: 8080,
|
||||||
|
username: "admin",
|
||||||
|
password: "password",
|
||||||
|
logger: {
|
||||||
|
level: "info",
|
||||||
|
error_path: "/app/logs/error.log",
|
||||||
|
full_path: "/app/logs/combined.log"
|
||||||
|
},
|
||||||
|
timestamp_format: "HH:mm:ss DD-MM-YYYY",
|
||||||
|
views_directory: "/app/views",
|
||||||
|
temp_directory: "/app/temp",
|
||||||
|
paths: {
|
||||||
|
css: {
|
||||||
|
web: "/css",
|
||||||
|
src: "/src/css"
|
||||||
|
},
|
||||||
|
js: {
|
||||||
|
web: "/javascript",
|
||||||
|
src: "/src/javascript"
|
||||||
|
},
|
||||||
|
chartjs: {
|
||||||
|
web: "/vendor/chartjs",
|
||||||
|
src: "/node_modules/chart.js/dist"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
prefix: "map",
|
||||||
|
steps: 10,
|
||||||
|
max_rpm: 6500,
|
||||||
|
max_throttle: 1
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
internal_server_error: "Internal server error. Check logs for more information.",
|
||||||
|
empty_db: "No mappings found.",
|
||||||
|
bad_request: "Bad request.",
|
||||||
|
not_found: "Not found."
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user