-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvidos.config.sample.ts
34 lines (31 loc) · 1.15 KB
/
vidos.config.sample.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type { VidosConfig } from '~/utils/types-config'
const configDefault = {
API_SEARCH: 'https://search-dev.teritorio.xyz/search',
API_ADDR: 'https://api-adresse.data.gouv.fr',
API_EXPORT: 'https://print-dev.teritorio.xyz/v0.1',
API_QR_SHORTENER: 'https://qr-shortener-dev.teritorio.xyz',
IMAGE_PROXY: null,
MAPILLARY_ACCESS_TOKEN: null,
OPEN_ROUTE_SERVICE_KEY: null,
ISOCHRONE: false,
SENTRY_DSN: null,
COOKIES_CONSENT: null,
COOKIES_LINK: null,
GOOGLE_SITE_VERIFICATION: undefined,
GOOGLE_TAG_MANAGER_ID: null,
MATOMO_URL: null,
MATOMO_SITEID: null,
}
const config: VidosConfig = {
localhost: {
HOSTS: ['localhost'],
...configDefault,
API_ENDPOINT: 'https://dev.appcarto.teritorio.xyz/content/api.teritorio/geodata/v0.1',
API_PROJECT: 'dev',
API_THEME: 'tourism',
VECTO_STYLE_URL: 'https://merge-proxy.teritorio.xyz/styles/teritorio-tourism-1.0/style.json?key=###',
SATELLITE_STYLE_URL: 'https://merge-proxy.teritorio.xyz/styles/satellite-hybrid/style.json?key=###',
BICYCLE_STYLE_URL: 'https://merge-proxy.teritorio.xyz/styles/teritorio-bicycle-tourism/style.json?key=###',
},
}
export default config