diff --git a/development.sh b/development.sh deleted file mode 100755 index b88aba0..0000000 --- a/development.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -if [ -f ./.second_run ]; then - sleep 2 - python manage.py collectstatic --noinput - python manage.py makemigrations - python manage.py migrate -else - python manage.py collectstatic --noinput - python manage.py makemigrations backups - python manage.py makemigrations computers - python manage.py makemigrations core - python manage.py makemigrations customers - python manage.py makemigrations devices - python manage.py makemigrations licenses - python manage.py makemigrations nets - python manage.py makemigrations softwares - python manage.py makemigrations users - python manage.py makemigrations - python manage.py migrate - python manage.py loaddata backups - python manage.py loaddata computers - python manage.py loaddata core - python manage.py loaddata devices - python manage.py loaddata nets - python manage.py loaddata softwares - python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('admin', 'admin@example.com', 'password')" - python manage.py loaddata network_inventory.yaml - touch .second_run -fi -gunicorn network_inventory.wsgi:application --reload --bind 0.0.0.0:8000 --workers 3 diff --git a/docker-compose-development.yml b/docker-compose-development.yml index 332b4ce..af24ddf 100644 --- a/docker-compose-development.yml +++ b/docker-compose-development.yml @@ -14,7 +14,6 @@ services: web: build: . - command: ./development.sh volumes: - .:/code ports: