Skip to content

Commit f7af35e

Browse files
committed
docs: remove system because appstarter does not have it alongside app
1 parent 2dd808a commit f7af35e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

user_guide_src/source/general/configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ Environment Variables and CodeIgniter
6868

6969
CodeIgniter makes it simple and painless to set Environment Variables by using a "dotenv" file. The term comes from the file name, which starts with a dot before the text "env".
7070

71-
CodeIgniter expects **.env** to be at the root of your project alongside the ``system``
72-
and ``app`` directories. There is a template file distributed with CodeIgniter that's
71+
CodeIgniter expects **.env** to be at the root of your project alongside the
72+
``app`` directories. There is a template file distributed with CodeIgniter that's
7373
located at the project root named **env** (Notice there's no dot (**.**) at the start?).
7474
It has a large collection of variables your project might use that have been assigned
7575
empty, dummy, or default values. You can use this file as a starting place for your
@@ -221,7 +221,7 @@ Configuring multiple environments is easily accomplished by using a separate **.
221221

222222
The file should not contain every possible setting for every configuration class used by the application. In truth, it should include only those items that are specific to the environment or are sensitive details like passwords and API keys and other information that should not be exposed. But anything that changes between deployments is fair-game.
223223

224-
In each environment, place the **.env** file in the project's root folder. For most setups, this will be the same level as the ``system`` and ``app`` directories.
224+
In each environment, place the **.env** file in the project's root folder. For most setups, this will be the same level as the ``app`` directories.
225225

226226
Do not track **.env** files with your version control system. If you do, and the repository is made public, you will have put sensitive information where everybody can find it.
227227

0 commit comments

Comments
 (0)