mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
11 lines
259 B
Python
11 lines
259 B
Python
from pathlib import Path
|
|
|
|
import rapidjson
|
|
|
|
from freqtrade.configuration.config_schema import CONF_SCHEMA
|
|
|
|
|
|
schema_filename = Path(Path(__file__).parent.parent / "schema.json")
|
|
with schema_filename.open("w") as f:
|
|
rapidjson.dump(CONF_SCHEMA, f, indent=2)
|