Changes between Version 2 and Version 3 of SoftWare/ProjectMeta


Ignore:
Timestamp:
Apr 27, 2018, 2:16:46 PM (6 years ago)
Author:
g7moreau
Comment:

Add example to create list file

Legend:

Unmodified
Added
Removed
Modified
  • SoftWare/ProjectMeta

    v2 v3  
    1313It has been develop and test on only two projects.
    1414Many aspect of it will be improve in the future.
     15
     16
     17== {{{PROJECT-META.yml}}} meta file ==
     18
     19This file is the core of the project.
     20One difficult task is to list all your open data.
     21Sometime, it's very easy,
     22sometime it's could be painful and time consuming,
     23especially if there is a lot of data
     24
     25Here an example to append all the folder of kind {{{*.mproj*'}}} (Coriolis example for some open data)
     26at the end of the {{{PROJECT-META.yml}}} file.
     27{{{
     28find . -name '*.mproj*' -a -type d | sed 's/^/    - /;' >> PROJECT-META.yml
     29}}}
    1530
    1631== Repository ==