Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 564 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 564 Bytes

Elphas

Elephant Identification and counting system

To activate front-end, inside the dir run

npm install

afterwards,

npm start

In the back-end you would find requirements.txt which includes all the required modules. To install those run inside the dir

pip install -r requirements.txt

An Anaconda environment is preferred.

If using windows, as the server is written in app.py, run

set FLASK_APP=app.py
flask run

to start the server.

If on linux or mac run

export FLASK_APP=app.py
flask run

to up and run the server.