14 lines
518 B
Bash
14 lines
518 B
Bash
# PORT for the main application (frontend).
|
|
PORT=8200
|
|
|
|
# Port on which the Docsify documentation server will run.
|
|
DOCSIFY_PORT=8201
|
|
|
|
# Base URL for the server socket API, used for real-time communication (e.g., WebSockets).
|
|
REACT_APP_SERVER_SOCKET_API_BASE_URL=185.100.212.76:8000
|
|
|
|
# Base URL for the server REST API, used for HTTP requests to the backend server.
|
|
REACT_APP_SERVER_REST_API_BASE_URL=185.100.212.76:5000
|
|
|
|
# Base URL for the server marketplace API.
|
|
REACT_APP_SERVER_MARKETPLACE_URL=185.100.212.76:50011 |