mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
366 B
Ruby
Executable File
14 lines
366 B
Ruby
Executable File
#!/usr/bin/env rake
|
|
# frozen_string_literal: true
|
|
|
|
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
|
|
require_relative 'config/application'
|
|
|
|
Openfoodnetwork::Application.load_tasks
|
|
|
|
if !ENV['DISABLE_KNAPSACK'] && defined?(Knapsack)
|
|
Knapsack.load_tasks
|
|
end
|