flask-boilerplate
flask-boilerplate copied to clipboard
Simple flask boilerplate with Postgres, Docker, and Heroku/Zeit now
When running `docker-compose build` & `docker-compose up` from the zipfile on a mac, I run into the following issue: ``` app | Traceback (most recent call last): app | File...
This is my model: ```python class Person(Mixin, db.Model): """Person Table.""" __tablename__ = "person" id = db.Column(db.Integer, primary_key=True) name = db.Column(db.String(100), nullable=False) faces = db.relationship('Face') def __repr__(self): return f"" ``` This...
Just two quick questions. Why is line 12 of docker-compose.yml this: - flask-app-db:/var/lib/postgresql/data instead of this: - flask-app-db:/var/lib/docker/volumes/flask-app-db/_data On Ubuntu using the former means that db data does not persist...
Hello, Following the Docker setup instructions here: https://github.com/tko22/flask-boilerplate/wiki/Docker-Setup docker-compose up -d This one builds without a problem. docker ps shows me everything is running fine. CONTAINER ID IMAGE COMMAND CREATED...
a lot of applications require scheduled jobs (eg sending emails at certain time, retrieving information, etc). Find a way to optional add https://apscheduler.readthedocs.io/en/latest/ to this boilerplate
this will give future projects extensibility.