Upload files.

This commit is contained in:
0xcathiefish
2026-02-12 08:11:37 +00:00
parent 47fa783913
commit b33ef907d4
2029 changed files with 53320 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
window.API_CONFIG = { baseUrl: 'https://xxx.xxx.com' };
/**
* Google OAuth Configuration
* Configure your Google OAuth Client ID here
* Access control is managed via the test users list in GCP Console
*/
const AUTH_CONFIG = {
// Client ID obtained from GCP Console
// Replace with your actual Client ID
clientId: 'xxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com',
// Authentication success callback
onSuccess: (user) => {
console.log('Authentication successful:', user.email);
// Additional logic can be added here, e.g. logging
},
// Authentication failure callback
onError: (error) => {
console.error('Authentication error:', error);
// Error handling logic can be added here
}
};
// Export configuration
window.AUTH_CONFIG = AUTH_CONFIG;