We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f80288 commit 7ed09d3Copy full SHA for 7ed09d3
railties/lib/rails/generators/rails/app/templates/bin/setup.tt
@@ -38,10 +38,6 @@ FileUtils.chdir APP_ROOT do
38
puts "\n== Removing old logs and tempfiles =="
39
system! "bin/rails log:clear tmp:clear"
40
41
- puts "\n== Restarting application server =="
42
- system! "bin/rails restart"
43
-
44
- # puts "\n== Configuring puma-dev =="
45
- # system "ln -nfs #{APP_ROOT} ~/.puma-dev/#{APP_NAME}"
46
- # system "curl -Is https://#{APP_NAME}.test/up | head -n 1"
+ puts "\n== Starting development server =="
+ exec "bin/dev"
47
end
0 commit comments