-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
60 lines (46 loc) · 1.56 KB
/
.env.example
File metadata and controls
60 lines (46 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# globals
# ---------------------------------------------------
# used for naming
PROJECT_NAME=raspiscan
# the docker compose binary from github
DOCKER_COMPOSE_SOURCE=https://github.com/docker/compose/releases/download/v2.12.2/docker-compose-linux-armv7
# docker build
DOCKER_IMAGE_VERSION=0.2
DOCKER_IMAGE_NAME=node-rtl433-ui
DOCKER_REGISTRY=ghcr.io/seekwhencer
DOCKER_BUILDX_PLATFORM=linux/arm64/v8,linux/amd64
DOCKER_BUILDX_NAME=spachtelmasse
DOCKER_QEMU_VERSION=7.2.0-1
# the target for pkg binary (obsolete)
BUILD_FILENAME=server_arm64
BUILD_TARGET=node16-linux-arm64
# Server App
# ---------------------------------------------------
# as title ;)
SERVER_PORT=3000
# container outside
SERVER_PORT_OUTSIDE=3000
# the RELATIVE path to the frontend production bundle
SERVER_FRONTEND_PATH=../frontend/dist/prod
# console output on topic event
SERVER_LOG_TOPICS=true
# USB Device
# ---------------------------------------------------
USB_DEVICE_SOURCE=/dev/bus/usb/001/003
USB_DEVICE_TARGET=/dev/bus/usb/001/003
# MQTT
# ---------------------------------------------------
# this is the reachabe ip of the mqtt broker - used by extra hosts in compose file
MQTT_HOST_IP=192....
# docker network internal name, set by extra_hosts in compose file
MQTT_HOST=broker
# the mqtt port of broker
MQTT_PORT=1886
# Frontend Dev
# ---------------------------------------------------
# the dev proxy port
FRONTEND_SERVER_PORT=4000
# the hostname (docker hostname = service name)
FRONTEND_PROXY_TARGET_HOST=raspiscan_server
# the server port. same as SERVER_PORT
FRONTEND_PROXY_TARGET_PORT=3000