diff --git a/README.md b/README.md index b5780c5..1ef36e9 100644 --- a/README.md +++ b/README.md @@ -24,3 +24,21 @@ and return `pspy --update` will automatically synchronize the mirror you selected in `pure-py.json`. e.g., for [purescript-console](https://github.com/purescript/purescript-console), we can make this [purescript-console.py](https://github.com/purescript-python/purescript-console.py) for former's Python FFI files). + + +## Test Mirror(for PureScript-Python developers) + +Fork this repo, and `git clone ~/.pspy/mirrors/test`, +and change `index-mirror` of your `ps-pure.py` to `test`: + +```json +{ + "corefn-dir": /* your setting */, + "data-format": /* your setting */, + + "entry-module": /* your setting */, + "index-mirror": "test", + "pspy-blueprint": /* your setting */ +} +``` + diff --git a/entry.py b/entry.py index cc2d1c3..b597c3b 100644 --- a/entry.py +++ b/entry.py @@ -16,7 +16,16 @@ "st": r"https://github.com/purescript-python/purescript-st.py", "unsafe-coerce": r"https://github.com/purescript-python/purescript-unsafe-coerce.py", "unfoldable": r"https://github.com/purescript-python/purescript-unfoldable.py", - "arrays": r"https://github.com/purescript-python/purescript-arrays.py" + "arrays": r"https://github.com/purescript-python/purescript-arrays.py", + "exceptions": r"https://github.com/purescript-python/purescript-exceptions.py", + "globals": r"https://github.com/purescript-python/purescript-globals.py", + "integers": r"https://github.com/purescript-python/purescript-integers.py", + "math": r"https://github.com/purescript-python/purescript-math.py", + "lazy": r"https://github.com/purescript-python/purescript-lazy.py", + "strings": r"https://github.com/purescript-python//purescript-strings.py", + "random": r"https://github.com/purescript-python/purescript-random.py", + "quickcheck": r"https://github.com/purescript-python/purescript-quickcheck.py", + "record": r"https://github.com/purescript-python/purescript-record.py", }