1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #15657 from JohnRiv/guides_asset_pipeline_local

[ci skip] There are 3 caveats to Local Precompilation including 1 config change
This commit is contained in:
Zachary Scott 2014-06-11 17:21:14 -07:00
commit 2ef44ff13b

View file

@ -856,10 +856,12 @@ duplication of work.
Local compilation allows you to commit the compiled files into source control,
and deploy as normal.
There are two caveats:
There are three caveats:
* You must not run the Capistrano deployment task that precompiles assets.
* You must change the following two application configuration settings.
* You must ensure any necessary compressors or minifiers are
available on your development system.
* You must change the following application configuration setting:
In `config/environments/development.rb`, place the following line:
@ -873,9 +875,6 @@ development mode, and pass all requests to Sprockets. The prefix is still set to
would serve the precompiled assets from `/assets` in development, and you would
not see any local changes until you compile assets again.
You will also need to ensure any necessary compressors or minifiers are
available on your development system.
In practice, this will allow you to precompile locally, have those files in your
working tree, and commit those files to source control when needed. Development
mode will work as expected.