Update instructions to use DDEV
This commit is contained in:
parent
3d50849101
commit
d4c9c7926b
1 changed files with 9 additions and 9 deletions
18
README.md
18
README.md
|
@ -26,10 +26,10 @@ git submodule update
|
||||||
To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216).
|
To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216).
|
||||||
|
|
||||||
```
|
```
|
||||||
vagrant ssh
|
ddev start
|
||||||
composer install
|
ddev composer install
|
||||||
drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb
|
ddev . drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb
|
||||||
drush -y rsync @live:%files @self:%files
|
ddev . drush -y rsync @live:%files @self:%files
|
||||||
```
|
```
|
||||||
|
|
||||||
### Get updates
|
### Get updates
|
||||||
|
@ -37,11 +37,11 @@ drush -y rsync @live:%files @self:%files
|
||||||
```
|
```
|
||||||
git pull
|
git pull
|
||||||
git submodule update --recursive --remote
|
git submodule update --recursive --remote
|
||||||
vagrant ssh
|
ddev start
|
||||||
composer install
|
ddev composer install
|
||||||
drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb
|
ddev . drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb
|
||||||
drush -y rsync @live:%files @self:%files
|
ddev . drush -y rsync @live:%files @self:%files
|
||||||
drush cim -y
|
ddev . drush cim -y
|
||||||
```
|
```
|
||||||
|
|
||||||
## Theming
|
## Theming
|
||||||
|
|
Loading…
Reference in a new issue