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" shell: "docker-compose exec web ./manage.py compress"
- name: Collect static frontend files - 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 - name: Start Docker site
shell: "docker-compose up -d" shell: "docker-compose up -d"

View file

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