Trying to figure out the best way to organize my js and css files for my app. If I examine the structure of a play2 app:
app → Source code for the application
└ assets → Compiled asset sources
└ stylesheets → Typically LESS CSS sources
└ javascripts → Typically CoffeeScript sources
└ controllers → Application controllers
└ models → Application business layer
└ views → Templates
public → Public assets
└ stylesheets → CSS files
└ javascripts → Javascript files
└ images → Image files
Currently, all my files are located in the public folder. However, in order for the Google Closure compiler(minification) to function correctly, I need to move the files to app/assets.
How did you address this issue? Did you create symbolic links to the other folder? Did you keep all your js and css files in app/assets?
Do you have any other creative solutions that work well?