This repo contains code for a small application that showcases a number of image recognition technologies. The frontend is developed as a react app while the backend is handled by a flask server.
- Using ssh, clone repo to local enviroment
git clone [email protected]:wbglaeser/image-recognition-sandbox.git
- Install required packages for backend (requirements file is currently missing) and start in development mode.
cd back_end && pip install requirements.txt && python flask_app/app.py
- Install required packages for frontend and start react app in development mode.
cd ../front_end && npm install && npm start