create license management

This commit is contained in:
2026-04-06 13:31:30 +03:30
parent 44097fe1ac
commit de1a046485
46 changed files with 819 additions and 366 deletions
+5 -10
View File
@@ -1,14 +1,9 @@
// Production environment configuration
// Development environment configuration
export const environment = {
production: true,
apiBaseUrl: 'https://api.yourdomain.com',
host: 'yourdomain.com',
port: 443,
apiEndpoints: {
auth: '/api/auth',
users: '/api/users',
// Add more endpoints as needed
},
production: false,
apiBaseUrl: 'http://194.59.214.243:5002',
host: 'localhost',
port: 5000,
enableLogging: false,
enableDebug: false,
};
+1
View File
@@ -1,6 +1,7 @@
// Development environment configuration
export const environment = {
production: false,
// apiBaseUrl: 'http://194.59.214.243:5002',
apiBaseUrl: 'http://localhost:5002',
host: 'localhost',
port: 5000,