Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 491 Bytes

README.md

File metadata and controls

51 lines (32 loc) · 491 Bytes

jde-predict

Docker

docker-compose up

API

Prerequisites

  1. Python >= 3.9

Development

python app.py

Production

python -m gunicorn -w 1 app:app

Frontend

Prerequisites

  1. Node.js >= 10

Development

First, run the development server:

cd frontend/
npm ci
npm run dev

Open http://localhost:3000 with your browser to see the result.

Production

npm ci
npm start