Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 644 Bytes

README.md

File metadata and controls

46 lines (31 loc) · 644 Bytes

Dev Environment

  • Python 3.9
  • pip 21.0
  • pipenv 2020.11

How to run the app

export SALESFOX_BING_API_KEY=<your api key>
export SALESFOX_MONGODB_COMPANY_PASSWORD=<password in 1Password>
export SALESFOX_OPEN_WEATHER_API_KEY=<your api key>

pipenv shell
python ./flask-backend/src/main.py

The server is available at http://localhost:5000

How to use pipenv

Start Environment

pipenv shell

Quit Environment

exit

Install Dependencies

Install dependencies from Pipfile

pipenv install

Install a new dependency and add it to Pipfile

pipenv install [library_name]