mirror of
https://github.com/status-im/cabot.git
synced 2025-02-24 18:38:07 +00:00
Turns out celery doesn't like in-memory sql backends, but has a built-in memory broker. Use that instead and remove sqlalchemy requirement
8 lines
144 B
Bash
8 lines
144 B
Bash
DATABASE_URL=sqlite://:memory:
|
|
|
|
CELERY_BROKER_URL=memory://
|
|
CELERY_RESULT_BACKEND=db+sqlite://:memory:
|
|
CELERY_ALWAYS_EAGER=true
|
|
|
|
SKIP_INIT=true
|