mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
35 lines
822 B
Markdown
35 lines
822 B
Markdown
# Database
|
|
|
|
python manage.py db init
|
|
python manage.py db migrate
|
|
python manage.py db upgrade
|
|
|
|
## Development only
|
|
|
|
python manage.py db history
|
|
python manage.py db downgrade
|
|
// reset git: migrations/versions
|
|
python manage.py db migrate
|
|
python manage.py db upgrade
|
|
|
|
## Kill local detached server
|
|
|
|
lsof -i :5000
|
|
kill -9 PIDNUMBER
|
|
|
|
## i18n
|
|
|
|
<https://pythonhosted.org/Flask-BabelEx/>
|
|
|
|
## Init
|
|
|
|
pybabel extract -F babel.cfg -o messages.pot . && pybabel extract -F babel.cfg -k lazy_gettext -o messages.pot . && pybabel init -i messages.pot -d translations -l de
|
|
|
|
## Neue msgid's scannen und in *.po mergen
|
|
|
|
pybabel extract -F babel.cfg -o messages.pot . && pybabel extract -F babel.cfg -k lazy_gettext -o messages.pot . && pybabel update -i messages.pot -d translations
|
|
|
|
## Nach dem Übersetzen
|
|
|
|
pybabel compile -d translations
|