Files
winterfail/config.js

10 lines
376 B
JavaScript

// Configuration for the BTC Trading Dashboard
// This file allows the dashboard to connect to any backend API URL.
window.APP_CONFIG = {
// URL of the backend API
// If running on the same machine, use http://localhost:8000/api/v1
// If running on a different machine, replace localhost with the backend IP
API_BASE_URL: 'http://20.20.20.20:8000/api/v1'
};