diff --git a/.gitignore b/.gitignore
index 594bea6..63d4fdc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
.DS_Store
-*.log
\ No newline at end of file
+*.log
+venv
\ No newline at end of file
diff --git a/.idea/MVStudio-Docker.iml b/.idea/MVStudio-Docker.iml
index 3a57834..47e3bb7 100644
--- a/.idea/MVStudio-Docker.iml
+++ b/.idea/MVStudio-Docker.iml
@@ -15,8 +15,9 @@
+
-
+
diff --git a/.idea/misc.xml b/.idea/misc.xml
index fda0d84..0b550c7 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -3,5 +3,5 @@
-
+
\ No newline at end of file
diff --git a/MVStudio-Backend b/MVStudio-Backend
index cf20787..13b5315 160000
--- a/MVStudio-Backend
+++ b/MVStudio-Backend
@@ -1 +1 @@
-Subproject commit cf20787595ac870f2c6b5e342c0d48b3ab96108f
+Subproject commit 13b5315b5227b8a8c7d2c11f0c78aa0dd69bf267
diff --git a/MVStudio-Frontend b/MVStudio-Frontend
index a00a339..7281654 160000
--- a/MVStudio-Frontend
+++ b/MVStudio-Frontend
@@ -1 +1 @@
-Subproject commit a00a339302ffac42c38a067cbb9b524fd087e208
+Subproject commit 7281654c91b848652c839a42dfafccba25a78c50
diff --git a/docker-compose-prod.yml b/docker-compose-prod.yml
index 0774bc9..28aa053 100644
--- a/docker-compose-prod.yml
+++ b/docker-compose-prod.yml
@@ -27,7 +27,7 @@ services:
celery:
build:
context: ./MVStudio-Backend
- command: celery -A config worker --loglevel=info
+ command: celery -A config worker --loglevel=info --concurrency=2
depends_on:
- redis
- rabbitmq
@@ -114,7 +114,7 @@ services:
python manage.py migrate &&
python manage.py search_index --create &&
python manage.py search_index --rebuild -f&&
- python manage.py runserver 0.0.0.0:8000"
+ gunicorn --bind 0.0.0.0:8000 config.wsgi:application -w 2"
frontend:
container_name: MVStudio-Frontend