Skip to content

Configuration file

Fabien edited this page Feb 21, 2021 · 2 revisions

You could create an external config file who contain config values.

External configuration file need to be named config.yml and need contains theses values :

# Storage Type
# Available values : NONE, MONGO
storageType: "NONE"

# Storage URL if storageType is not NONE (check documentation of the specified storage)
# Example for mongo : storageUrl: "mongodb://localhost:27017/"
storageUrl: ""

# Used for multithreading
# -1 = Use all threads from your computer - 1 (by default we remove 1 thread to not overload computer)
# /!\ You can put the max value if your want but this will use all available resource /!\
maxThreads: -1
Clone this wiki locally