Files
adamantium/Guardfile
2023-01-27 22:55:09 +11:00

11 lines
204 B
Ruby

# frozen_string_literal: true
group :server do
guard "puma", port: ENV.fetch("HANAMI_PORT", 2300) do
watch(%r{config/*})
watch(%r{lib/*})
watch(%r{app/*})
watch(%r{slices/*})
end
end