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

11
lib/tasks/vendor.rake Normal file
View File

@@ -0,0 +1,11 @@
namespace :vendor do
desc 'Clone the frontend apps repos into vendor/'
task :clone do
puts '----- Clone the frontend apps repos -----'
puts
@config['vendor'].each do |name, repo_url|
sh "git clone #{repo_url} vendor/#{name}"
puts
end
end
end