User Tools

Site Tools


guifi.net:entorno_desarrollo

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
guifi.net:entorno_desarrollo [2022/11/07 08:29] joseguifi.net:entorno_desarrollo [2022/11/08 05:08] (current) jose
Line 1: Line 1:
 ====== Entorno de desarrollo para la web de Guifi ====== ====== Entorno de desarrollo para la web de Guifi ======
 Repositori: https://gitlab.guifi.net/ramon.roca/drupal9-guifi-networks Repositori: https://gitlab.guifi.net/ramon.roca/drupal9-guifi-networks
 +
 +https://gitlab.guifi.net/jose.legido/docker-drupal9
  
 Drupal 9 Drupal 9
 +
 +docker-compose.yml
 +<code>
 +version: '3.1'
 +
 +services:
 +
 +  drupal:
 +    image: drupal:9-apache
 +    ports:
 +      - 8096:80
 +    volumes:
 +      - '${PWD}/html/modules:/var/www/html/modules'
 +      - '${PWD}/html/profiles:/var/www/html/profiles'
 +      - '${PWD}/html/themes:/var/www/html/themes'
 +      # this takes advantage of the feature in Docker that a new anonymous
 +      # volume (which is what we're creating here) will be initialized with the
 +      # existing content of the image at the same location
 +      - /var/www/html/sites
 +    restart: always
 +
 +  db:
 +    image: mysql:5.7
 +    volumes:
 +      - '${PWD}/db_data:/var/lib/mysql'
 +    environment:
 +      MYSQL_ROOT_PASSWORD: guifi
 +      MYSQL_DATABASE: net9
 +      MYSQL_USER: net9
 +      MYSQL_PASSWORD: development
 +    ports:
 +      - "3306:3306"
 +    restart: always
 +</code>
 +
 +Configuramos docker-dupal:
 +  docker exec -ti docker-drupal_drupal_1 bash
  
 Instalar composer Instalar composer
Line 11: Line 50:
 php -r "unlink('composer-setup.php');" php -r "unlink('composer-setup.php');"
  
-sudo mv composer.phar /usr/local/bin/composer+mv composer.phar /usr/local/bin/composer
 </code> </code>
  
Line 22: Line 61:
 cd /var/www/html cd /var/www/html
 sudo mkdir net9ldev sudo mkdir net9ldev
-chmod www-data:www-data net9ldev+chown www-data:www-data net9ldev
 composer create-project drupal/recommended-project:^9 net9ldev composer create-project drupal/recommended-project:^9 net9ldev
 </code> </code>
Line 37: Line 76:
 </code> </code>
  
 +Le damos permisos a todo como www-data (tarda un poquillo):
 +   chown -R www-data:www-data /var/www/html/*
 +Reiniciar apache
 +  drush si standard --db-url=mysql://net9:development@172.17.0.1:3306/net9
 +  
 +  drush site-install standard -y --site-name="Drupal Guifi" --account-name=admin --account-pass=admin --db-url=mysql://net9:development@172.17.0.1/net9 -vvvv
 +
 +
 +  sed -i 's/"stable"/"dev"/g' composer.json
 +  
 +  drush pm:enable action tracker inline_form_errors layout_builder layout_builder media media_library statistics telephone config_translation content_translation basic_auth jsonapi rest serialization
 +
 +
 +<code>
 +drush language-add ast
 +drush language-add eu
 +drush language-add ca
 +drush language-add fr
 +drush language-add gl
 +drush language-add de
 +drush language-add el
 +drush language-add it
 +drush language-add pt-pt
 +drush language-add es
 +</code>
 +
 +<code>
 +composer require drupal/bootstrap5 
 +composer require drupal/admin_toolbar drupal/webform_remote_select drupal/webform_rest drupal/field_group drupal/field_permissions drupal/field_validation drupal/popup_field_group
 +composer require drupal/geocoder:* geocoder-php/nominatim-provider drupal/leaflet drupal/geofield drupal/geofield_map drupal/views_bulk_operations drupal/bulk_update_fields drupal/views_data_export drupal/views_conditional -w
 +composer require drupal/address drupal/tzfield drupal/conditional_fields drupal/calendar
 +composer require drupal/eva drupal/prepopulate drupal/phone_international drupal/taxonomy_manager drupal/auto_entitylabel drupal/inline_entity_form drupal/ief_popup drupal/token drupal/devel
 +composer require drupal/css_editor drupal/date_popup drupal/easy_breadcrumb drupal/eck drupal/external_entities drupal/keycloak drupal/openid_connect drupal/smtp drupal/taxonomy_term_revision drupal/views_dates drupal/views_ef_fieldset drupal/views_summarize drupal/views_timestamp_to_date drupal/view_custom_table drupal/views_autocomplete_filters drupal/views_aggregator drupal/pdf_serialization drupal/entity_extra_field
 +composer require drupal/hacked drupal/coder drupal/security_review
 +</code>
 +
 +<code>
 +drush theme:enable bootstrap5
 +drush pm:enable admin_toolbar webform_remote_select webform_rest webform_ui field_group field_permissions field_validation popup_field_group --yes
 +drush pm:enable geocoder leaflet leaflet_markercluster leaflet_views geofield geofield_map views_bulk_operations bulk_update_fields views_data_export views_conditional --yes
 +drush pm:enable address field_layout tzfield geocoder_field geocoder_address geocoder_geofield conditional_fields calendar --yes 
 +drush pm:enable eva prepopulate phone_international taxonomy_manager auto_entitylabel inline_entity_form ief_popup token devel --yes
 +drush pm:enable css_editor date_popup easy_breadcrumb eck external_entities keycloak openid_connect smtp taxonomy_term_revision views_dates views_ef_fieldset views_summarize views_timestamp_to_date view_custom_table views_autocomplete_filters views_aggregator pdf_serialization entity_extra_field entity_extra_field_ui --yes
 +drush en hacked coder security_review --yes
 +</code>
guifi.net/entorno_desarrollo.1667809769.txt.gz · Last modified: 2022/11/07 08:29 by jose