79b565cfb6
- Store daily BTC OHLC candles in SQLite to avoid hitting CoinGecko on every load - Seed with 30 days of daily candles on first boot (free tier gives daily granularity for days<=30) - Auto-detect and replace coarse legacy candle data on startup - Daily refresh adds new candles on each container restart - New GET /candles endpoint (supports ?days=365 and ?days=all) - Switch BTCHistoryChart to BTCCandlestickChart using lightweight-charts (TradingView) - Purchase markers with nearest-candle matching and multi-purchase merging - Fullscreen mode showing all stored candles - Fix frontend port to 3001 and pass REACT_APP_API_URL as build arg Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
343 B
Docker
17 lines
343 B
Docker
FROM node:18-alpine AS build
|
|
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
ARG REACT_APP_API_URL=http://localhost:8000
|
|
ENV REACT_APP_API_URL=$REACT_APP_API_URL
|
|
RUN npm run build
|
|
|
|
FROM node:18-alpine
|
|
RUN npm install -g serve
|
|
WORKDIR /app
|
|
COPY --from=build /app/build ./build
|
|
EXPOSE 3001
|
|
CMD ["serve", "-s", "build", "-l", "3001"]
|