So, i have python app on heroku with some “database.db” when the app is running this database is filling up.
For example i have this files in my project:
bot.py
database.db
when i make changes in bot.py and trying to push changes, my database is refreshing and when updates are deployed it already cleared.
i using this algorithm to push changes:
heroku login
cd %dir%
git add .
git commit -am “commit”
git push heroku master
so how to push only bot.py changes, without touching database?