2023-10-19 19:57:19 +00:00
|
|
|
# <a name="contribute"></a>How to contribute
|
|
|
|
|
2024-02-16 10:46:58 +00:00
|
|
|
If you have any suggestion or want your project to be included in the list, you can contribute in the following ways.
|
2023-10-19 19:57:19 +00:00
|
|
|
|
|
|
|
## Open an issue
|
|
|
|
|
|
|
|
To suggest a new program, check the existence of the program in the list.
|
2024-02-16 10:46:58 +00:00
|
|
|
If it is not present, you can open an issue including the following items:
|
2023-10-19 19:57:19 +00:00
|
|
|
|
|
|
|
- `name`: Name of the program
|
|
|
|
- `homepage`: URL of the homepage (if it exists)
|
|
|
|
- `git`: URL of a clonable git repository (if it exists)
|
2024-02-16 10:46:58 +00:00
|
|
|
- `description`: Text with the description of the program
|
2023-10-19 19:57:19 +00:00
|
|
|
|
2024-02-16 10:46:58 +00:00
|
|
|
At least one of the two items `homepage` and `git` must be present.
|
2023-10-19 19:57:19 +00:00
|
|
|
|
|
|
|
## Pull request on `data/apps.csv`
|
|
|
|
|
|
|
|
The peculiarity of this repository is that the source of information is structured into CSV files with a simple structure.
|
|
|
|
See the `data/` directory.
|
|
|
|
|
|
|
|
If you want to contribute using a pull request, add the new entry to `data/apps.csv`.
|
|
|
|
In the CSV file, the `git` field refers to a **clonable git URL**.
|
|
|
|
|
|
|
|
Please make changes **to the CSV file only**, **not to the README file**.
|
|
|
|
I will review the request and, upon acceptance, I will take care of generating the README and updating the list.
|
|
|
|
|
|
|
|
## Contribution via email
|
|
|
|
|
|
|
|
If you prefer an email, contact me at `toolleeo@gmail.com` by sending the same information required for the "open an issue" method.
|
|
|
|
|
|
|
|
# Generation of the README file
|
|
|
|
|
|
|
|
If necessary, this `README` file can be (re-)generated from the CSV files.
|
|
|
|
To build `README.md` run:
|
|
|
|
|
|
|
|
```
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
`python3` is required for building. And `make`, of course. :-)
|
|
|
|
|