Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 827 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 827 Bytes

Upload img, ocr english words and translate to chinese by youdao api.

上传图片并 ocr 翻译成中文,使用有道智云的 API.

Installation

python3 -m venv backend/.venv
source backend/.venv/bin/activate
pip3 install -r backend/requirements.txt -r backend/requirements-dev.txt
cd frontend
npm install

Run

Server

cd backend
python3 server.py

Worker

export APP_KEY=
export APP_SECRET=
python3 worker.py

Frontend

cd frontend
npm install
npm run dev