https://github.com/renanstn/flask-sqlalchemy-template
Template de uma aplicação Flask, utilizando SQLAlchemy como ORM, e Alembic como ferramenta de migrations.
https://github.com/renanstn/flask-sqlalchemy-template
flask heroku sqlalchemy
Last synced: 2 months ago
JSON representation
Template de uma aplicação Flask, utilizando SQLAlchemy como ORM, e Alembic como ferramenta de migrations.
- Host: GitHub
- URL: https://github.com/renanstn/flask-sqlalchemy-template
- Owner: renanstn
- Created: 2021-09-01T14:34:24.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-01T23:20:00.000Z (almost 5 years ago)
- Last Synced: 2025-01-28T19:48:03.743Z (over 1 year ago)
- Topics: flask, heroku, sqlalchemy
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flask-sqlalchemy-template
[](https://www.python.org/)
[](https://flask.palletsprojects.com/en/2.0.x/)
[](https://www.heroku.com)
Template de uma aplicação Flask, utilizando SQLAlchemy como ORM, e Alembic como ferramenta de migrations.
## Comandos alembic
### Criar migrations
```
alembic revision --autogenerate -m ""
```
### Aplicar migrations
```
alembic upgrade head
```