Initial commit

This commit is contained in:
Yaser
2026-08-13 19:42:08 +03:30
commit d59bf30ef0
173 changed files with 11702 additions and 0 deletions

15
Rakefile Normal file
View File

@@ -0,0 +1,15 @@
require 'yaml'
require 'base64'
require 'erb'
require_relative 'lib/opendax/config_loader'
CONFIG_PATH = 'config/app.yml'.freeze
UTILS_PATH = 'config/utils.yml'.freeze
@config = Opendax::ConfigLoader.load
@utils = YAML.load_file(UTILS_PATH)
# Add your own tasks in files placed in lib/tasks ending in .rake
Dir.glob('lib/tasks/*.rake').each do |task|
load task
end