Skip to content

Snippets

Stéphane Malta e Sousa edited this page Mar 11, 2020 · 11 revisions

Django

Reset migrations and database

python manage.py migrate --fake api zero
..\scripts\create_db.ps1

Delete migrations files except __init__.py, then make migrations and migrate:

del .\api\migrations\0*.py
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser --email admin@example.com --username admin

Translations

Make messages

django-admin makemessages -l fr
Clone this wiki locally