Add AppConstants

This commit is contained in:
Sosthene 2025-08-27 17:30:34 +02:00
parent b97bbcd087
commit 108419b381

View File

@ -0,0 +1,20 @@
/**
* Application-wide constants
* This file contains constants that are used across multiple components and services
*/
export const APP_CONSTANTS = {
/**
* Default validator ID used for creating various entities (customers, documents, roles, etc.)
* This is a system-level validator that has permissions to create and manage entities
*/
DEFAULT_VALIDATOR_ID: 'c87bbb4873fd4c8427655b083b098c4b3f3a8ebf436d286b69c8036db4a2a029:0',
} as const;
// Export individual constants for easier imports
export const DEFAULT_VALIDATOR_ID = APP_CONSTANTS.DEFAULT_VALIDATOR_ID;
// Define
export const DEFAULT_STORAGE_URLS = [
'https://dev3.4nkweb.com/storage'
] as const;