Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@ Drupal development and other Drupal related tasks.

Missing a tool here? Just fork the repo and add your tool as a `<name>.yml` in the `_data/projects` folder.

```yaml
# _data/projects/example-tool.yml
name: Example Tool
year_created: 2024
source: https://github.com/example/example-tool
homepage: https://example.com
description: |
A single sentence that will appear in the listings.
requires:
- php
drupal_versions:
- 10
category:
- devops
recommended: true
```

Use the same keys shown above so the site build picks up the metadata correctly.
Optional keys such as `docs`, `logo`, or `similar` can be added when the information is available.

Make sure to follow the following rules:

- **Open Source:** The tool must have a public repository on Github, Gitlab, Bitbucket etc that we can link to and pull in stats from.
Expand Down
19 changes: 19 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,25 @@

Feel free to use this website and **add a missing tool at the `_data/projects` folder**.

```yaml
name: My Tool
year_created: 2024
source: https://github.com/example/my-tool
homepage: https://example.com
description: |
Short, human readable copy that appears on the listings page.
requires:
- php
drupal_versions:
- 10
category:
- devops
recommended: true
```

Copy the structure above, update the values, and submit a pull request with the new file. Include optional fields like `docs`,
`logo`, or `similar` when those links are available.

## Issues

Add an issue at [github.com/theodorosploumis/drupaltools/issues](https://github.com/theodorosploumis/drupaltools/issues)