We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc649f2 commit 1ab47bbCopy full SHA for 1ab47bb
src/lucky_cli/src_template.cr
@@ -37,6 +37,9 @@ class SrcTemplate
37
root_dir.add_file(".env") do |io|
38
ECR.embed("#{__DIR__}/../web_app_skeleton/.env.ecr", io)
39
end
40
+ root_dir.add_file(".gitattributes") do |io|
41
+ ECR.embed("#{__DIR__}/../web_app_skeleton/.gitattributes.ecr", io)
42
+ end
43
root_dir.add_file("docker-compose.yml") do |io|
44
ECR.embed("#{__DIR__}/../web_app_skeleton/docker-compose.yml.ecr", io)
45
src/web_app_skeleton/.gitattributes.ecr
@@ -0,0 +1 @@
1
+*.cr text eol=lf
0 commit comments