Sha256: 7577eb5b75bb670040165d3c2e8eb89c59d63796ad65ac77e963025a923f3b14
Contents?: true
Size: 1.5 KB
Versions: 36
Compression:
Stored size: 1.5 KB
Contents
module SOULs class Sync < Thor # rubocop:disable Style/StringHashKeys map "models" => :model # rubocop:enable Style/StringHashKeys desc "model", "Sync Model, DB, Factory Files with API" def model cp_dir = %w[db app/models spec/factories] cp_dir.each do |dir| cp_and_dl_files(dir:) cp_env_files end SOULs::Painter.sync(cp_dir.to_s) end private def cp_and_dl_files(dir: "db") require("#{SOULs.get_mother_path}/config/souls") project_id = SOULs.configuration.project_id worker_paths = SOULs.configuration.workers.map { |n| n[:name].split("souls-#{project_id}-").last } worker_paths.each do |path| cp_path = "./apps/api/#{dir}" old_path = "./apps/#{path}/#{dir}" system("rm -rf #{old_path}", chdir: SOULs.get_mother_path) system("mkdir -p #{old_path}", chdir: SOULs.get_mother_path) system("cp -r #{cp_path}/* #{old_path}", chdir: SOULs.get_mother_path) rescue StandardError # Do nothing end end def cp_env_files return unless File.exist?("#{SOULs.get_mother_path}/apps/api/.env") project_id = SOULs.configuration.project_id worker_paths = SOULs.configuration.workers.map { |n| n[:name].split("souls-#{project_id}-").last } worker_paths.each do |path| system("rm -f ./apps/#{path}/.env", chdir: SOULs.get_mother_path) system("cp -f ./apps/api/.env ./apps/#{path}/.env", chdir: SOULs.get_mother_path) end end end end
Version data entries
36 entries across 36 versions & 1 rubygems