- FuelPHP Application Development Blueprints
- Sébastien Drouyer
- 330字
- 2021-07-23 20:25:52
Development process of a FuelPHP application
The development process of a FuelPHP application generally contains the steps shown in the following image:

- Install FuelPHP: Since we are using this framework, this first step is quite obvious.
- Config (configuration): At the beginning, you will generally need to specify how to connect to the database and which package you will use. Later on, you might also need to create and use your own configuration files to improve the maintainability of your application.
- Scaffold: The oil command line of FuelPHP allows you to easily generate code files ready to be used. This step is not necessary, but we will often use this functionality in this book because it really speeds up the implementation of your application.
- Dev (development): This is where you, as a developer, step in. You customize the generated code to get exactly what you want. When you want to add new features (for instance a new model), you go back to the scaffolding step.
- Tests: Functional and unit testing are important if you want large applications to stay maintainable. When bugs are discovered, you go back to the development step in order to fix them. Unlike the other steps, we won't approach this subject in this chapter for the sake of its conciseness. It will be addressed in Chapter 5, Building Your Own RESTful API.
- Prod (production): Having a project working locally is nice, but the final objective is generally to publish it online. We will give you some directions about this step at the end of this chapter, but we won't get too much into the details, given the diversity of available hosting services.
Just to be clear, this is a very general guideline, and of course the order of the steps is not rigid. For instance, developers using the test-driven development process could merge the fourth and fifth steps, or a preproduction step could be added. The development process should only depend on each developer and institution's standards.
推薦閱讀
- 跟老齊學Python:輕松入門
- 云原生Spring實戰
- Mastering Ubuntu Server
- 零基礎學Java程序設計
- HTML 5與CSS 3權威指南(第3版·上冊)
- 西門子S7-200 SMART PLC編程從入門到實踐
- Statistical Application Development with R and Python(Second Edition)
- Apache Camel Developer's Cookbook
- 移動增值應用開發技術導論
- SQL Server 2008 R2數據庫技術及應用(第3版)
- Practical GIS
- Android編程權威指南(第4版)
- Clojure Data Structures and Algorithms Cookbook
- Web開發新體驗
- Moodle 3.x Developer's Guide