This a python based bot build for aiding people during the Corona Crisis.
- The bot has been built using python 3.7.4
- Twilio
- Flask
- Create Virtual Environment
python -m venv dev
python3 -m venv dev
- Activate Virtual Environment
dev\Scripts\activate
or
source dev\bin\activate
- Install packages
pip install -r requirements.txt
- Set up environment and run
set FLASK_ENV=development && set FLASK_APP=bot.py
flask run
or
export FLASK_ENV=development && export FLASK_APP=bot.py
flask run
- Globally Port using ngrok
ngrok http 500
Then use the http or https which are created by ngrok for globally accessing your local host application and connect to channel of your choice in Twilio Console.
Enjoy.
Project is Developed by DeveloperPrince.