Skip to content

Commit 47ee929

Browse files
authored
[docs] Quickstart for ExpressionEngine (ddev#4777)
1 parent 0a2c5ce commit 47ee929

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.spellcheckwordlist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ ExecStart
4646
ExecStop
4747
Execute
4848
Executes
49+
ExpressionEngine
4950
FPATH
5051
FSTYPE
5152
Flags

docs/content/users/quickstart.md

+38
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,44 @@ While the generic `php` project type is [ready to go](./project.md) with any CMS
149149
ddev launch
150150
```
151151

152+
=== "ExpressionEngine"
153+
154+
## ExpressionEngine
155+
156+
=== "ExpressionEngine ZIP File Download"
157+
158+
Download the ExpressionEngine code from [expressionengine.com](https://expressionengine.com/), then follow these steps based on the [official installation instructions](https://docs.expressionengine.com/latest/installation/installation.html):
159+
160+
```bash
161+
mkdir my-ee && cd my-ee
162+
unzip /path/to/ee-zipfile.zip
163+
ddev config # Accept the defaults
164+
ddev start
165+
ddev launch /admin.php # Open installation wizard in browser
166+
```
167+
168+
When the installation wizard prompts for database settings, enter `db` for the _DB Server Address_, _DB Name_, _DB Username_, and _DB Password_.
169+
170+
Visit your site.
171+
172+
=== "ExpressionEngine Git Checkout"
173+
174+
Follow these steps based on the [ExpressionEngine Git Repository README.md](https://github.com/ExpressionEngine/ExpressionEngine#how-to-install):
175+
176+
```bash
177+
git clone https://github.com/ExpressionEngine/ExpressionEngine # for example
178+
cd ExpressionEngine
179+
ddev config # Accept the defaults
180+
ddev start
181+
ddev composer install
182+
touch system/user/config/config.php
183+
echo "EE_INSTALL_MODE=TRUE" >.env.php
184+
ddev start
185+
ddev launch /admin.php # Open installation wizard in browser
186+
```
187+
188+
When the installation wizard prompts for database settings, enter `db` for the _DB Server Address_, _DB Name_, _DB Username_, and _DB Password_.
189+
152190
=== "Laravel"
153191

154192
## Laravel

0 commit comments

Comments
 (0)