Local changes: Updated model training, removed debug instrumentation, and configuration improvements

This commit is contained in:
kfox
2025-12-26 01:15:43 -05:00
commit cc60da49e7
388 changed files with 57127 additions and 0 deletions

53
frontend/README.md Normal file
View File

@@ -0,0 +1,53 @@
# Crypto Trader Frontend
Modern React frontend for the Crypto Trader application.
## Setup
```bash
npm install
```
## Development
```bash
npm run dev
```
Access at: http://localhost:3000
## Build
```bash
npm run build
```
## Environment Variables
Create `.env` file:
```env
VITE_API_URL=http://localhost:8000
VITE_WS_URL=ws://localhost:8000/ws/
```
## Tech Stack
- **React 18** - UI framework
- **TypeScript** - Type safety
- **Material-UI** - Component library
- **React Query** - Data fetching
- **React Router** - Routing
- **Recharts** - Charts
- **Vite** - Build tool
## Project Structure
```
src/
├── api/ # API client functions
├── components/ # Reusable components
├── hooks/ # Custom React hooks
├── pages/ # Page components
└── types/ # TypeScript types
```