Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ BACKEND_PORT=3001
# Client (frontend) port
CLIENT_PORT=3000

# API port
API_PORT=8080

# Signal API Configuration
# URL for the Signal API server (if using Signal tracking)
SIGNAL_API_URL=http://localhost:8080
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ services:
signal-api:
image: bbernhard/signal-cli-rest-api
ports:
- "8080:8080"
- "${API_PORT:-8080}:8080"
environment:
- MODE=json-rpc
restart: unless-stopped
Expand Down