I have an app where I need constantly change code, styles and javascripts. It is for administrator use. So it would be more easy to leave it in production as in development mode - without compiling assets, restarting server on update...
Also, I need all code and assets would be loaded freshly on every page load. Without compiling on update.
Problem. Even If I copy all configuration from /config/environments/development.rb
to /config/environments/production.rb
- On production Rails still searches compiled assets in /tmp/ dir. How to make it behave with assets as it does on development?
server: nginx
rails version: 4.0