forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import {BAPP_CONFIG_URL} from '#/env'
2import {type Geolocation} from '#/geolocation/types'
3
4export const GEOLOCATION_SERVICE_URL = `${BAPP_CONFIG_URL}/geolocation`
5
6/**
7 * Default geolocation config.
8 */
9// forks tend to get blocked from the geolocation service bluesky uses,
10// instead of making our own and grabbing peoples location without their consent,
11// lets just force set everyone to be in the US,
12// maybe make a tweak in the future that lets ppl customize this
13export const FALLBACK_GEOLOCATION_SERVICE_RESPONSE: Geolocation = {
14 countryCode: 'US',
15 regionCode: 'CA',
16}