- Drupal 8 Configuration Management
- Stefan Borchert Anja Schirwinski
- 378字
- 2021-07-23 20:02:36
Why manage configuration?
It's simple to explain why configuration that is only saved in the database is bad. You can't keep track of any changes (who made what change, and when); it's hard to work with a group of people (you simply can't get their changes without using their SQL dump, and using their dump would delete your work); and, if you build something on a development environment, how do you get it to the live site? You get the gist. We want our configuration in files, and Drupal 8 gives us just that.
Before Drupal 8, a variety of methods were used to transport configuration from one environment to another—for example, from a development environment to a production environment.
These included some rather bad methods such as writing down the process to manually recreate the same configuration, which is error-prone; dumping the development database in the live site, which loses all content created in the meantime; and some better but rather time-consuming methods, such as writing update hooks or using the contributed module Features to export configuration to a module. The latter is one of the most used methods in Drupal 7 because it works well most of the time, produces well-arranged files, and can be used without having to write any code, which is good because anyone can create a Feature without having to know how to code.
Even though you can use the new Configuration Management system without a version control system such as Git, it's at its best when used with one. Version-controlling your configuration allows you to track document changes. Later in this chapter, we will show you how to get the best out of version-controlling your configuration. Version-controlled Configuration Management is crucial to developing and maintaining quality in a Drupal project, especially when working with a team of developers. Exposing all developers to the same code and providing a history for the code increases efficiency a lot.
At first, it might seem frustrating to have to learn something new. However, software tends to change over time, and changes are hard to track using just your memory. This is really one of the best ways to improve your project and save your time and money, so make sure you learn it!
- INSTANT FreeMarker Starter
- Selenium Design Patterns and Best Practices
- 營銷數據科學:用R和Python進行預測分析的建模技術
- 人人都懂設計模式:從生活中領悟設計模式(Python實現)
- Flux Architecture
- Bootstrap 4:Responsive Web Design
- Elasticsearch for Hadoop
- Scientific Computing with Scala
- 微信小程序開發(fā)實戰(zhàn):設計·運營·變現(圖解案例版)
- Application Development with Parse using iOS SDK
- Visual C++從入門到精通(第2版)
- 從零開始學Python大數據與量化交易
- Java程序設計
- Blender 3D Cookbook
- 多接入邊緣計算實戰(zhàn)