From 8330a001ae8564a218ec831e8e166718d72082f3 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 19 Jun 2020 17:00:39 +0200 Subject: [PATCH] :bug: Add missing require on prod app start. --- backend/src/uxbox/main.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/uxbox/main.clj b/backend/src/uxbox/main.clj index 092c44bbd..e61e619b6 100644 --- a/backend/src/uxbox/main.clj +++ b/backend/src/uxbox/main.clj @@ -28,6 +28,7 @@ [& args] (require 'uxbox.config 'uxbox.migrations + 'uxbox.images 'uxbox.http 'uxbox.tasks) (mount/start))