more services added

This commit is contained in:
2025-05-16 14:55:50 +03:00
parent 4606f0721d
commit 5f7cb35ccc
95 changed files with 2600 additions and 717 deletions

View File

@@ -1,2 +1,4 @@
export const WEB_BASE_URL = process.env.WEB_BASE_URL;
export const API_BASE_URL = process.env.API_BASE_URL;
const BASE_URL = "http://localhost:3000";
const API_URL = "http://localhost:3000/api";
export const WEB_BASE_URL = process.env.WEB_BASE_URL || BASE_URL;
export const API_BASE_URL = process.env.API_BASE_URL || API_URL;