Closed andyw8 closed 2 years ago
Is there no app/javascript/controllers/application.js
file? I thought that was created automatically, but maybe it's not for some reason.
Update: It's due to the --skip-javascript
option (which the README says to include). If I run without that, app/javascript/controllers/application.js
is created and the app can boot.
Ah yes. And you know, we should probably be copying the application.js
from this repo anyways.
Probably just need to add it around here: https://github.com/excid3/jumpstart/blob/master/template.rb#L123
Want to take a stab at that?
This should be fixed in 5f4a5f8 👍
Beat me to it 😁
Sometimes you just need an easy PR to finish the day off. 😎
On a new Rails 7.0.1 app, running
bin/dev
fails with:Command use to create:
rails new hello_jumpstart -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb --skip-javascript
Commenting out that line allows the app to boot.