- heroku no longer offering free apps
- basilica no longer a company
- dependabot alerts
DS11 Unit 3 Sprint 3 - Twitter Face-Off
See This App Live, on Heroku (NO MORE FREE TIER APPS)
Basilica (SHUTDOWN)
FLASK_APP='twitoff'
BASILICA_KEY='<your key here>'
ALPHAVANTAGE_KEY='<your key here>'
TWITTER_API_KEY='<your key here>'
TWITTER_API_KEY_SECRET='<your key secret here>'
TWITTER_ACCESS_TOKEN='<your token here>'
TWITTER_ACCESS_TOKEN_SECRET='<your token secret here>'
pipenv shell
FLASK_APP=twitoff flask db init
FLASK_APP=twitoff flask db migrate
FLASK_APP=twitoff flask db upgrade
FLASK_APP=twitoff flask run
heroku login
heroku create <your-app-name-here>
git push heroku master
heroku addons:create heroku-postgresql:hobby-dev
heroku config:set FLASK_APP='twitoff'
heroku config:set SECRET_KEY='<your key here>'
heroku config:set BASILICA_KEY='<your key here>'
heroku config:set ALPHAVANTAGE_KEY='<your key here>'
heroku config:set TWITTER_API_KEY='<your key here>'
heroku config:set TWITTER_API_KEY_SECRET='<your key here>'
heroku config:set TWITTER_ACCESS_TOKEN='<your key here>'
heroku config:set TWITTER_ACCESS_TOKEN_SECRET='<your key here>'
heroku run /bin/bash
flask db init
flask db stamp head
flask db migrate
flask db upgrade
exit
https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/user-object
https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object
http://docs.tweepy.org/en/latest/api.html#api-reference
https://flask-sqlalchemy.palletsprojects.com/en/2.x/quickstart/
https://jinja.palletsprojects.com/en/2.11.x/templates/#list-of-control-structures