The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
This is my take on how to get up and running with NGINX, PHP-FPM, MySQL and phpMyAdmin on OSX Yosemite.
This article is adapted from the original by Jonas Friedmann. Who I just discovered is from Würzburg in Germany. A stonesthrow from where I was born ;)
Make sure you have the latest version of XCode installed. Available from the Mac App Store.
Install the Xcode Command Line Tools:
xcode-select --install
All code is available in example app - https://github.com/maxivak/webpacker-rails-example-app
| class Application < Rails::Application | |
| # Initialize configuration defaults for originally generated Rails version. | |
| config.load_defaults 7.0 | |
| # ensure that `update(files: [uploaded_file])` will append, not replace | |
| config.active_storage.replace_on_assign_to_many = false | |
| end |