-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
3 changed files
with
47 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Editorial Guidelines | ||
|
||
The REMARK editor role is responsible for: | ||
|
||
1. Guaranteeing that listed REMARKs are compliant | ||
with the REMARK standard | ||
|
||
2. Adding the metadata needed for the REMARK to be | ||
published to the Econ-ARK website. | ||
|
||
## Indexing the site | ||
|
||
To index a REMARK on the website, add: | ||
1. A markdown file with all the required metadata about the REMARK. A template for the metadata file with the required fields is in [this repository](https://github.com/econ-ark/REMARK/blob/master/REMARKs/template.md). | ||
- Note: markdown file's `Version` field must correspond to the the tag of the release (see above). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# REMARK Guidelines | ||
|
||
A REMARK refers to an open git repository that is indexed in this repository with appropriate metadata. | ||
|
||
## Submitting a REMARK | ||
|
||
To index the repository as a REMARK, please file a pull request in [this repository](https://github.com/econ-ark/REMARK) | ||
|
||
## The REMARK Standard | ||
|
||
The REMARK's repository must: | ||
1. Have a [tagged release](https://docs.github.com/en/github/administering-a-repository/managing-releases-in-a-repository), the last commit before including it as a REMARK should be tagged with a 1.0 release. | ||
2. In that repository at that release, there must be: | ||
- In either the top-level directory or a `binder/` directory, either: | ||
- installation files for `pip`: | ||
- a `runtime.txt` containing the name of a python version, e.g. `python-3.9.0` | ||
- a `requirements.txt` file with pinned dependencies (such as created by the command `pip freeze > requirements.txt`), or... | ||
- installation files for conda: | ||
- an `environment.yml` file with pinned dependencies | ||
- A `reproduce.sh` script that | ||
- Installs the requirements | ||
- Runs and reproduces all the results | ||
3. Include a valid CITATION.cff document with bibliographic | ||
metadata for the repository. | ||
|
||
It is **strongly recommended** to include: | ||
- If reproduce.sh takes longer than a few minutes, a `reproduce_min.sh` that generates some interesting subset of results within a few minutes | ||
- A Jupyter notebook that exposits the material being reproduced. | ||
|
||
A maximalist REMARK (the extra stuff is completely optional) includes: | ||
- A reproduce_text-etc.sh that generates the text | ||
- A dashboard that creates interactive versions of interesting figures |