Tagged Questions
0
votes
1answer
192 views
using pythons Unit-testing setUp tearDown with flask-sql-alchemy
The project is a webapp being deployed on heroku:
Here are my simple unitests in db_test_many_create.py:
import unittest
from petalapp.database.models import User, Hospital, Data, ROLE_USER
from ...
0
votes
1answer
99 views
Web App Database Setup
Firstly, I have searched Yahoo and haven't found a good answer.
All the Flask SQLAlchemy tutorials use SQLite, but from what I read SQLite isn't really good with Heroku - or at least a Yahoo search ...
4
votes
1answer
277 views
How should I run alembic migrations on Heroku?
I'm trying to run a fairly simple Flask + SQLAlchemy site on Heroku, but I'm not sure how I should run my migrations to set up my DB. When I run heroku run alembic upgrade head, I get the following ...