forked from jchomaz/Vulture
gestion d'une config pour les ip si prod ou dev
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<head> <meta charset="UTF-8"> <link rel="icon" href="/favicon.ico"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Brain Blast</title>
|
<head> <meta charset="UTF-8"> <link rel="icon" href="/favicon.ico"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Brain Blast</title>
|
||||||
|
<script src="/config.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body> <div id="app"></div> <script type="module" src="/src/main.js"></script>
|
<body> <div id="app"></div> <script type="module" src="/src/main.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
7
VApp/public/config.js
Normal file
7
VApp/public/config.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
window.APP_CONFIG = {
|
||||||
|
mqttBrokerUrl: 'ws://192.168.73.252:9001',
|
||||||
|
redBuzzerIP: '192.168.73.40',
|
||||||
|
blueBuzzerIP: '192.168.73.41',
|
||||||
|
orangeBuzzerIP: '192.168.73.42',
|
||||||
|
greenBuzzerIP: '192.168.73.43'
|
||||||
|
};
|
||||||
@@ -1,16 +1,15 @@
|
|||||||
// Fichier vide, regarde config.js.example pour personaliser ce fichier.
|
|
||||||
// Note de dev : Normalement ce fichier ne devrait plus avoir de
|
|
||||||
// modifications
|
|
||||||
|
|
||||||
// config.js
|
// config.js
|
||||||
export default {
|
// Reads configuration from window.APP_CONFIG (loaded via public/config.js)
|
||||||
mqttBrokerUrl: 'ws://192.168.73.252:9001',
|
// This allows runtime configuration changes without rebuilding the app.
|
||||||
|
|
||||||
// Buzzer
|
const defaults = {
|
||||||
|
mqttBrokerUrl: 'ws://192.168.73.252:9001',
|
||||||
redBuzzerIP: '192.168.73.40',
|
redBuzzerIP: '192.168.73.40',
|
||||||
blueBuzzerIP: '192.168.73.41',
|
blueBuzzerIP: '192.168.73.41',
|
||||||
orangeBuzzerIP: '192.168.73.42',
|
orangeBuzzerIP: '192.168.73.42',
|
||||||
greenBuzzerIP: '192.168.73.43'
|
greenBuzzerIP: '192.168.73.43'
|
||||||
|
|
||||||
// Light
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const config = window.APP_CONFIG || defaults;
|
||||||
|
|
||||||
|
export default config;
|
||||||
|
|||||||
12
VContainers/VApp/config/config.js
Normal file
12
VContainers/VApp/config/config.js
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
window.APP_CONFIG = {
|
||||||
|
// URL du broker MQTT (WebSockets)
|
||||||
|
// En dev local avec le setup VContainers, utiliser 'ws://localhost:9001'
|
||||||
|
// En prod, utiliser l'IP du serveur, ex: 'ws://192.168.73.252:9001'
|
||||||
|
mqttBrokerUrl: 'ws://localhost:9001',
|
||||||
|
|
||||||
|
// IPs des buzzers
|
||||||
|
redBuzzerIP: '192.168.73.40',
|
||||||
|
blueBuzzerIP: '192.168.73.41',
|
||||||
|
orangeBuzzerIP: '192.168.73.42',
|
||||||
|
greenBuzzerIP: '192.168.73.43'
|
||||||
|
};
|
||||||
@@ -17,7 +17,7 @@ echo "Starting NanoMQ..."
|
|||||||
# NanoMQ needs to expose ports for external access (e.g. VApp frontend) and be on the network for VNode
|
# NanoMQ needs to expose ports for external access (e.g. VApp frontend) and be on the network for VNode
|
||||||
podman run -dt --rm --network $NETWORK_NAME --name nanomq \
|
podman run -dt --rm --network $NETWORK_NAME --name nanomq \
|
||||||
-p 1883:1883 -p 9001:9001 -p 8081:8081 -p 8083:8083 -p 8883:8883 \
|
-p 1883:1883 -p 9001:9001 -p 8081:8081 -p 8083:8083 -p 8883:8883 \
|
||||||
-v ./VContainers/MQTT/config/nanomq.conf:/etc/nanomq.conf \
|
-v ./VContainers/MQTT/config/nanomq.conf:/etc/nanomq.conf:Z \
|
||||||
docker.io/emqx/nanomq:latest --conf /etc/nanomq.conf
|
docker.io/emqx/nanomq:latest --conf /etc/nanomq.conf
|
||||||
|
|
||||||
echo "Starting VNode..."
|
echo "Starting VNode..."
|
||||||
@@ -26,6 +26,8 @@ podman run -dt --rm --network $NETWORK_NAME --name vnode vnode:latest
|
|||||||
|
|
||||||
echo "Starting VApp..."
|
echo "Starting VApp..."
|
||||||
# VApp (nginx) needs port 80 exposed
|
# VApp (nginx) needs port 80 exposed
|
||||||
podman run -dt --rm --network $NETWORK_NAME --name vapp -p 8080:80 vapp:latest
|
podman run -dt --rm --network $NETWORK_NAME --name vapp -p 8080:80 \
|
||||||
|
-v ./VContainers/VApp/config/config.js:/usr/share/nginx/html/config.js:Z \
|
||||||
|
vapp:latest
|
||||||
|
|
||||||
echo "All containers started on network $NETWORK_NAME."
|
echo "All containers started on network $NETWORK_NAME."
|
||||||
|
|||||||
Reference in New Issue
Block a user