chore: add AGENTS.md with build, lint, test commands and style guidelines

This commit is contained in:
DiTus
2026-03-18 21:17:43 +01:00
parent e98c25efc4
commit 509f8033fa
32 changed files with 10087 additions and 133 deletions

9
config.js Normal file
View File

@ -0,0 +1,9 @@
// 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'
};