@@ -53,6 +53,9 @@ Enjoy your exploration of the CodeIgniter framework.
5353Getting Up and Running
5454**********************
5555
56+ Installing CodeIgnier
57+ =====================
58+
5659You can download a release manually from the site, but for this tutorial we will
5760use the recommended way and install the AppStarter package through Composer.
5861From your command line type the following::
@@ -62,6 +65,11 @@ From your command line type the following::
6265This creates a new folder, **ci-news **, which contains your application code, with
6366CodeIgniter installed in the vendor folder.
6467
68+ .. _setting-development-mode :
69+
70+ Setting Development Mode
71+ ========================
72+
6573By default, CodeIgniter starts up in production mode. This is a safety feature
6674to keep your site a bit more secure in case settings are messed up once it is live.
6775So first let's fix that. Copy or rename the ``env `` file to ``.env ``. Open it up.
@@ -74,6 +82,9 @@ out. So uncomment the line with ``CI_ENVIRONMENT`` on it, and change ``productio
7482
7583 CI_ENVIRONMENT = development
7684
85+ Running Development Server
86+ ==========================
87+
7788With that out of the way it's time to view your application in a browser. You can
7889serve it through any server of your choice, Apache, Nginx, etc, but CodeIgniter
7990comes with a simple command that takes advantage of PHP's built-in server to get
0 commit comments