Skip to content

Commit

Permalink
delete unnecessary meal groups file
Browse files Browse the repository at this point in the history
  • Loading branch information
skandrigi committed Nov 29, 2024
1 parent 5541068 commit ffdb5d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 61 deletions.
59 changes: 0 additions & 59 deletions hiss/application/meal_groups.py

This file was deleted.

5 changes: 3 additions & 2 deletions hiss/hiss/celery.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import absolute_import, unicode_literals
import os

from celery import Celery

# Set the default Django settings module for the 'celery' program.
Expand All @@ -14,8 +15,8 @@
app.autodiscover_tasks()

# Celery configuration for Redis as the broker and result backend
app.conf.broker_url = os.environ.get('REDIS_URL', 'redis://localhost:6379/0') # Redis as broker
app.conf.result_backend = os.environ.get('REDIS_URL', 'redis://localhost:6379/0') # Redis as result backend
app.conf.broker_url = os.environ.get('REDIS_URL', 'redis://localhost:6379/0')
app.conf.result_backend = os.environ.get('REDIS_URL', 'redis://localhost:6379/0')

@app.task(bind=True)
def debug_task(self):
Expand Down

0 comments on commit ffdb5d8

Please sign in to comment.