Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Elphas
Elephant Identification and counting system
# Elephant Identification and counting system

To activate front-end, inside the dir run
# To activate front-end, inside the dir run
```
npm install
```
Expand All @@ -10,20 +10,20 @@ 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
# 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
# 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
# If on linux or mac run
```
export FLASK_APP=app.py
flask run
Expand Down