... | @@ -6,25 +6,30 @@ Over an already existing installationation, open a shell and move to the web dir |
... | @@ -6,25 +6,30 @@ Over an already existing installationation, open a shell and move to the web dir |
|
|
|
|
|
### Remove styles
|
|
### Remove styles
|
|
|
|
|
|
```
|
|
```plaintext
|
|
sudo rm -f sites/default/files/css/*
|
|
sudo rm -f sites/default/files/css/*
|
|
```
|
|
```
|
|
|
|
|
|
### Initialize database
|
|
### Initialize database
|
|
|
|
|
|
```
|
|
```plaintext
|
|
drush site:install --yes
|
|
drush site:install --yes
|
|
```
|
|
```
|
|
|
|
|
|
Take the admin password just created, and login with the wen browser to the website.
|
|
Take the admin password just created, and login with the wen browser to the website.
|
|
|
|
|
|
### Install migrate manifest module
|
|
### Install migrate manifest module
|
|
```
|
|
|
|
|
|
```plaintext
|
|
composer require drupal/migrate_manifest
|
|
composer require drupal/migrate_manifest
|
|
drush en migrate_manifest
|
|
drush en migrate_manifest
|
|
```
|
|
```
|
|
|
|
|
|
### Create manifest
|
|
### Create manifest
|
|
At the web root directory, create the file
|
|
|
|
```
|
|
At the web root directory, create the file _manifest.yml_
|
|
|
|
|
|
|
|
```plaintext
|
|
# user
|
|
# user
|
|
- d6_user
|
|
- d6_user
|
|
- d6_user_profile_field
|
|
- d6_user_profile_field
|
... | @@ -39,6 +44,4 @@ At the web root directory, create the file |
... | @@ -39,6 +44,4 @@ At the web root directory, create the file |
|
- d6_user_picture_file
|
|
- d6_user_picture_file
|
|
- d6_user_picture_field
|
|
- d6_user_picture_field
|
|
- d6_user_picture_field_instance
|
|
- d6_user_picture_field_instance
|
|
```
|
|
``` |
|
|
|
\ No newline at end of file |
|
<eof> |
|
|
|
\ No newline at end of file |
|
|