imskr/Plant_Disease_Detection

How to Run the app folder on terminal

Closed this issue · 3 comments

Since I'm new to coding. Could you please tell me how to Run the app folder on terminal so that I can also create the web application for the given model. This is for my research project

imskr commented

For Local Testing:

Run the following commands:

pip install -r requirements.txt

Then: python app/server.py serve

If you have Docker installed:

docker build -t fastai-v3 . && docker run --rm -it -p 5000:5000 fastai-v3

Go to http://localhost:5000/ to test your app.

imskr commented

Simply Deploy it to any web services!