stm32-fmt-code/access_control_python_server/unit.json

25 lines
601 B
JSON
Raw Permalink Normal View History

2023-09-22 18:37:02 +00:00
{
"listeners": {
"*:80": {
"pass": "routes"
}
},
"routes": [{
"match": {
"uri": "*"
},
"action": {
"pass": "applications/racist_application"
}
}],
"applications": {
"racist_application": {
"type": "python",
2023-09-22 19:02:56 +00:00
"working_directory": "/app/stm32-fmt-code/access_control_python_server",
"home": "/app/iot-venv",
"path": "/app/stm32-fmt-code/access_control_python_server",
2023-09-22 18:40:35 +00:00
"module": "app",
"callable": "app"
2023-09-22 18:37:02 +00:00
}
}
}