|
| 1 | +# Config |
| 2 | + |
| 3 | +FIO Wrapper internally uses a configuration file to provide its standard capabilities. The configuration can be [overwritten](usage.md) by the user. |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | +## `base.ini` |
| 8 | + |
| 9 | +```ini |
| 10 | +[FIO] |
| 11 | +application = FIO Wrapper |
| 12 | +version = 1.0.0 |
| 13 | +base_url = https://rest.fnar.net |
| 14 | +timeout = 10 |
| 15 | +ssl_verify = True |
| 16 | +versions = 1.0.0 |
| 17 | + |
| 18 | +[URL] |
| 19 | +# material |
| 20 | +1.0.0_material_base = /material |
| 21 | +1.0.0_material_all = /allmaterials |
| 22 | + |
| 23 | +# exchange |
| 24 | +1.0.0_exchange_base = /exchange |
| 25 | +1.0.0_exchange_orders = /orders |
| 26 | +1.0.0_exchange_all = /all |
| 27 | +1.0.0_exchange_full = /full |
| 28 | + |
| 29 | +# building |
| 30 | +1.0.0_building_base = /building |
| 31 | +1.0.0_building_all = /allbuildings |
| 32 | + |
| 33 | +# recipe |
| 34 | +1.0.0_recipe_base = /recipes |
| 35 | +1.0.0_recipe_all = /allrecipes |
| 36 | + |
| 37 | +# planet |
| 38 | +1.0.0_planet_base = /planet |
| 39 | +1.0.0_planet_all = /allplanets |
| 40 | +1.0.0_planet_full = /allplanets/full |
| 41 | +1.0.0_planet_sites = /sites |
| 42 | +1.0.0_planet_search = /search |
| 43 | + |
| 44 | +# localmarket |
| 45 | +1.0.0_localmarket_base = /localmarket |
| 46 | +1.0.0_localmarket_planet = /planet |
| 47 | +1.0.0_localmarket_shipping_source = /shipping/source |
| 48 | +1.0.0_localmarket_shipping_destination = /shipping/destination |
| 49 | +1.0.0_localmarket_company = /company |
| 50 | + |
| 51 | +# sites |
| 52 | +1.0.0_sites_base = /sites |
| 53 | +1.0.0_sites_planets = /planets |
| 54 | +1.0.0_sites_warehouses = /warehouses |
| 55 | + |
| 56 | +# storage |
| 57 | +1.0.0_storage_base = /storage |
| 58 | +1.0.0_storage_planets = /planets |
| 59 | + |
| 60 | +# groups |
| 61 | +1.0.0_groups = /auth/groups |
| 62 | +1.0.0_groups_group = /auth/group |
| 63 | +1.0.0_groups_groupmemberships = /auth/groupmemberships |
| 64 | +1.0.0_groups_hub = /fioweb/grouphub |
| 65 | +1.0.0_groups_burn = /fioweb/burn/group |
| 66 | +``` |
| 67 | + |
| 68 | +## Config() class |
| 69 | +::: config |
0 commit comments