https://github.com/rachel-tanhao/twilio-voice-bot-python
https://github.com/rachel-tanhao/twilio-voice-bot-python
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rachel-tanhao/twilio-voice-bot-python
- Owner: rachel-tanhao
- License: mit
- Created: 2024-11-22T17:40:35.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-01-23T20:03:14.000Z (5 months ago)
- Last Synced: 2025-01-23T20:31:47.256Z (5 months ago)
- Language: Python
- Homepage: https://my-old-friend-fe65c61e6c2f.herokuapp.com/
- Size: 5.29 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
https://docs.google.com/presentation/d/1kq9ytSBdUUAwsIar7FfbGgkLle2JOw-YiheypJMMFZ8/edit#slide=id.g31ab35e2b92_0_11
How to deploy the code on Heroku:
heroku git:remote -a my-old-friend
heroku config:set DOMAIN=my-old-friend-fe65c61e6c2f.herokuapp.com
git add .
git commit -m "Updated code for deployment"git push heroku main
heroku logs --tail
How to run the project
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload --host 0.0.0.0 --port 6060 --log-level debug