12345678910111213141516171819202122232425262728 |
- # Warning: DO NOT EDIT THIS FILE
- # Copy it's contents to ...
- # 'env.production.toml' if you are running in production mode
- # 'env.development.toml' if you are running in development mode
-
- [database]
- username = "kibou"
- password = "kibou"
- database = "kibou_dev"
- hostname = "localhost"
-
- [endpoint]
- base_domain = "example.tld"
- base_scheme = "https"
-
- # This can probably be left as is
- host = "localhost"
- port = 8000
-
- # Adjust the workers value
- # -> Number of CPU cores * 2
- workers = 2
-
- [node]
- name = "Kibou"
- description = "A Kibou instance"
- contact_email = "kibou@example.tld"
- registrations_enabled = true
|