https://github.com/theodorosploumis/generate_drupal_report
A bash script that generates basic Drupal 8.x packages & modules report in txt files.
https://github.com/theodorosploumis/generate_drupal_report
bash-script drupal drupal-8 drupal-report drush maintenance-tasks
Last synced: 7 months ago
JSON representation
A bash script that generates basic Drupal 8.x packages & modules report in txt files.
- Host: GitHub
- URL: https://github.com/theodorosploumis/generate_drupal_report
- Owner: theodorosploumis
- License: mit
- Created: 2020-05-02T10:27:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T15:16:31.000Z (about 3 years ago)
- Last Synced: 2025-02-08T15:46:24.307Z (about 1 year ago)
- Topics: bash-script, drupal, drupal-8, drupal-report, drush, maintenance-tasks
- Language: Shell
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Generate drupal report script
A bash script that generates basic Drupal 8.x packages and modules report in txt files. I use this for Maintenance & Updates Reports for Drupal sites.
It generates only **2 txt files**:
```
(prefix)_drupal_modules.txt
(prefix)_php_packages.txt
```
## Requirements
- composer
- drush
- Drupal site with database (because need to bootstrap site)
## Download and install
```
wget https://raw.githubusercontent.com/theodorosploumis/generate_drupal_report/master/generate_drupal_report.sh \
--no-check-certificate && chmod +x generate_drupal_report.sh && \
mv -f generate_drupal_report.sh /usr/local/bin/drupal-report
```
## Execute
```
cd [MY-DRUPAL-ROOT]
drupal-report
```
## Similar projects
- https://gist.github.com/theodorosploumis/02b4e4df8989cb0072dfbbbdf89922bd
## License
[MIT 2020](LICENSE)