Skip to content

11. Golbat

Clayton Burlison edited this page Dec 17, 2023 · 3 revisions

Golbat is a new data processor. It is new, exciting, and super fast. Since there is a ton of interest from the community and currently Golbat is the only system that supports many of the latest game features, Golbat has it's own page.

So what do you actually need to do.

  1. Go setup Golbat Setup.
  2. If you are using the Legacy RealDeviceMap, pay attention to Hybrid Setup.
  3. Update ReactMap.
  4. Modify your configuration file (server/src/configs/local.json).

Configuration

This will use Golbat for everything. Spawns, Quests, Pokemon (InMemory using the API endpoint), etc.

    "schemas": [
      {
        "host": "127.0.0.1",
        "port": 3306,
        "username": "golbat_username",
        "password": "golbat_password",
        "database": "golbat",
        "useFor": [
          "scanCell",
          "spawnpoint",
          "gym",
          "pokestop",
          "weather",
          "route"
        ]
      },
      {
        "type": "golbat",
        "endpoint": "http://127.0.0.1:9001",
        "secret": "golbat_api_secret",
        "useFor": [
          "pokemon",
          "device"
        ]
      },
    ]