Sigyn configuration manager
Please see the full documentation here.
You can easily enjoy autocompletion & documentation from JSON schema for your sigyn.config.json
on Visual Studio Code.
- Go in settings. Ctrl + Shift + P -> Preferences: Open User Settings (JSON)
- Add the JSON Schemas:
"json.schemas": [
{
"fileMatch": ["*.sigyn.config.json"],
"url": "https://raw.githubusercontent.com/MyUnisoft/sigyn/main/src/config/src/schemas/extendedConfigSchema.json"
},
{
"fileMatch": ["sigyn.config.json"],
"url": "https://raw.githubusercontent.com/MyUnisoft/sigyn/main/src/config/src/schemas/configSchema.json"
}
]
Initialize Sigyn config given the path to the JSON config file.
Returns the previously initialized Sigyn config.
Note
If you try to get config while the config has not been initialized, it will throws.
Validate Sigyn configuration against an internal AJV Schema.
Validate Sigyn extended configuration against an internal AJV Schema.
See Interfaces
MIT