aboutsummaryrefslogtreecommitdiff
path: root/tasks.cr
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.cr')
-rw-r--r--tasks.cr25
1 files changed, 25 insertions, 0 deletions
diff --git a/tasks.cr b/tasks.cr
new file mode 100644
index 0000000..5a892d4
--- /dev/null
+++ b/tasks.cr
@@ -0,0 +1,25 @@
+# This file loads your app and all your tasks when running 'lucky'
+#
+# Run 'lucky --help' to see all available tasks.
+#
+# Learn to create your own tasks:
+# https://luckyframework.org/guides/command-line-tasks/custom-tasks
+
+# See `LuckyEnv#task?`
+ENV["LUCKY_TASK"] = "true"
+
+# Load Lucky and the app (actions, models, etc.)
+require "./src/app"
+require "lucky_task"
+
+# You can add your own tasks here in the ./tasks folder
+require "./tasks/**"
+
+# Load migrations
+require "./db/migrations/**"
+
+# Load Lucky tasks (dev, routes, etc.)
+require "lucky/tasks/**"
+require "avram/lucky/tasks"
+
+LuckyTask::Runner.run