Clone the project
git clone https://github.com/BrianSteel/Lost-Target-Search.git
Create and run a virtual environment
python -m venv venv
source venv/bin/activate (mac)
source venv/Scripts/activate (windows)
Install the correct python packages
pip install -r requirement.txt
Run flask
cd app/
flask run
PROJECT OPTIMIZATION TECHNIQUE/
|-- app/
| |-- app.py
|
|-- web/
| |-- static/
| | |-- css/
| | | |-- bootstrap.min.css
| | | |-- bootstrap.min.css.map
| | | |-- style.css
| | |
| | |-- img/
| | | |-- glyph-icons-settings-png
| | |
| | |-- js/
| | | |-- helper.js
| | | |-- map.js
| | | |-- matlab.func.js
| | | |-- mpso.js
| | | |-- simulation.js
| | | |-- variable.js
| | |
| |
| |-- templates/
| | |-- index.html
| |
|
|-- venv
|-- README.md
|-- .gitignore
