Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 802 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 802 Bytes

DrupalCamp Spain 2025

Initial setup

Get a copy of the database and files and put them in

ddev start
# Get dependencies:
ddev composer install

# Import a the base DB:
ddev import-db --file=database-file.sql.gz

# Run possible pending updates:
ddev drush updb -y

# Ensure you are up to date in terms of configration:
ddev drush cim -y

# Access to the site
ddev drush uli

From now on you'd be able to access to https://dcamp2025.ddev.site

Translations

If the folder web/sites/default/files/translations is not created, then run the command:

mkdir web/sites/default/files/translations

How to contribute