Skip to content

Commit

Permalink
feat: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
yokwejuste committed Aug 18, 2024
1 parent f8e78e5 commit 0dee3b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY . /app
RUN python manage.py collectstatic --noinput

COPY config/docker/supervisord-web.conf /etc/supervisor/conf.d/
COPY config/docker/supervisord-celery.conf /etc/supervisor/conf.d/
#COPY config/docker/supervisord-celery.conf /etc/supervisor/conf.d/

COPY config/script/start.sh /start.sh
RUN chmod +x /start.sh
Expand Down
2 changes: 1 addition & 1 deletion config/script/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord-web.conf &

/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord-celery.conf &
#/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord-celery.conf &

wait
2 changes: 1 addition & 1 deletion website_api/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"ENGINE": "django.db.backends.postgresql",
"NAME": os.getenv("DB_NAME"),
"USER": os.getenv("DB_USER"),
"PASSWORD": os.getenv("DB_PASSWORD"),
Expand Down

0 comments on commit 0dee3b0

Please sign in to comment.