Add external API server, configure fetch URLs, fix stats endpoint, update API config

This commit is contained in:
DiTus
2026-03-18 21:58:23 +01:00
parent 55f61e9b3c
commit 15881b7db8
4 changed files with 76 additions and 9 deletions

18
package.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "winterfail-web",
"version": "1.0.0",
"description": "Web dashboard for BTC trading",
"main": "index.js",
"scripts": {
"start": "http-server -c-1 -p 3001 -a 0.0.0.0 ."
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.22.1"
},
"devDependencies": {
"http-server": "^14.1.1"
}
}