- MongoDB
- Python [latest versions are good]
- create new environment in this folder
python -m venv [virtual_environment_name]
- activate environment in this folder
.\[virtual_environment_name]\Scripts\activate
- install all dependecies
pip install -r requirements.txt
- set the flask properties
$env:FLASK_APP = "app.py" // this is optional
$env:FLASK_ENV = "development" // this is required
- run the application
flask run
- put your scrappers/crawlers under the scrappers folder
- in the scrappers_init_ follow the same instructions
- in the /app.py
- modify connexion string
- update the function under the # MODIFY THIS ! comment