summaryrefslogtreecommitdiff
path: root/src/config.ts
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-09-24 10:52:38 +0200
committerYuval Adam <_@yuv.al>2025-09-24 10:52:38 +0200
commit2a050b383bcafefb8fc378531d6f15f352fdb5a5 (patch)
tree3170255e4a0b6e5488a3b851d8d9a0873e95747e /src/config.ts
parentc9d9d3a49aed068a7fe3dadcd8dd06f938e6d9b5 (diff)
Override all files with v8 implementation
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts
new file mode 100644
index 0000000..615e6d4
--- /dev/null
+++ b/src/config.ts
@@ -0,0 +1,19 @@
+const hostname = typeof window !== 'undefined' && window.location && window.location.hostname;
+
+const PRODUCTION = true;
+
+export const IMAGES_BASE_URL = PRODUCTION ? "https://imgs.geshem.space" : "";
+
+export const MAPBOX_ACCESS_TOKEN =
+ "pk.eyJ1IjoieXV2YWRtIiwiYSI6ImNpcnMxbzBuaTAwZWdoa25oczlzZmkwbHcifQ.UHtLngbKm9O8945pJm23Nw";
+
+export const IMAGE_COORDINATES: [number, number][] = [
+ [31.7503896894, 34.4878044232],
+ [37.8574239563, 34.5078463729],
+ [37.7157066403, 29.4538271687],
+ [31.9347389087, 29.4373462909]
+];
+
+export const PLAYBACK_HOURS = 2;
+
+export const PLAYBACK_SLOTS = (PLAYBACK_HOURS * 6) - 1; \ No newline at end of file