Activity
Posted in Rails Application Templates Discussion
Update: ok it appears to have been an issue with Redis not initiating properly. I reinstalled at it's resolved the issue.
Posted in Rails Application Templates Discussion
Hi Chris
Thanks for your work on this. For someone with low experience, this is massively helpful!
That said I'm still battling to get it running.
My local environment is Os X 10.13.6. I have new installs of Rub 2.5 and Rails 5.2.
I've installed yarn, redis, foreman;
but still seem to be having issues with getting Jumpstart to work.
It seems to be something about:
You need to allow webpack-dev-server host as allowed origin for connect-src.
Thanks for your work on this. For someone with low experience, this is massively helpful!
That said I'm still battling to get it running.
My local environment is Os X 10.13.6. I have new installs of Rub 2.5 and Rails 5.2.
I've installed yarn, redis, foreman;
but still seem to be having issues with getting Jumpstart to work.
It seems to be something about:
You need to allow webpack-dev-server host as allowed origin for connect-src.
This can be done in Rails 5.2+ for development environment in the CSP initializer
config/initializers/content_security_policy.rb with a snippet like this:
policy.connect_src :self, :https, "http://localhost:3035", "ws://localhost:3035" if Rails.env.development?
Here are the errors:
https://www.dropbox.com/sh/w05wxfunrj71rwp/AAAF-7nlhaIw5XBapoiqnNura?dl=0
Any help you could lend would be greatly appreciated so I can get onto doing your other Series.
Grant