| 15 | |
| 16 | |
| 17 | == {{{PROJECT-META.yml}}} meta file == |
| 18 | |
| 19 | This file is the core of the project. |
| 20 | One difficult task is to list all your open data. |
| 21 | Sometime, it's very easy, |
| 22 | sometime it's could be painful and time consuming, |
| 23 | especially if there is a lot of data |
| 24 | |
| 25 | Here an example to append all the folder of kind {{{*.mproj*'}}} (Coriolis example for some open data) |
| 26 | at the end of the {{{PROJECT-META.yml}}} file. |
| 27 | {{{ |
| 28 | find . -name '*.mproj*' -a -type d | sed 's/^/ - /;' >> PROJECT-META.yml |
| 29 | }}} |