Corrected migration, collectstatic

This commit is contained in:
Oleg Lavrovsky 2017-04-25 07:22:16 +02:00
parent 865840fb8a
commit eb5b2a65a8
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
shell: "docker-compose exec web ./manage.py compress"
- name: Collect static frontend files
shell: "docker-compose exec web ./manage.py collectstatic"
shell: "docker-compose exec web ./manage.py collectstatic --noinput"
- name: Start Docker site
shell: "docker-compose up -d"

View File

@ -9,7 +9,7 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('wagtailcore', '0033_auto_20170424_1809'),
('wagtailcore', '0033_auto_20170424_1816'),
('home', '0014_auto_20170421_1426'),
]