Skip to content

Latest commit

 

History

History
73 lines (63 loc) · 2.92 KB

README.md

File metadata and controls

73 lines (63 loc) · 2.92 KB
Kitchi logo

Prerequisites

Installation

pnpm install
cd Object_detection && pip install -r requirements.txt
cd ../recommendation_filter && pip install -r requirements.txt

Development

In three terminals, run the following:

pnpm dev
cd ./Object_detection && py main.py
cd ./recommendation_filter && py filter.py

Production

To build for production, run this command in the project root:

pnpm build

To start the API server, run this command:

pnpm start:server

To start the ML server, run the following:

cd ./Object_detection && py main.py

To start the recommendation server, run the following:

cd ./recommendation_filter && py filter.py

Production builds are served using NGINX. A sample configuration file can be found here.