Initial commit: MinIO WebUI - Complete implementation

- Backend: Express.js API with MinIO CLI integration
- Frontend: React with Material-UI for non-technical users
- Features: Bucket management, user creation, storage monitoring
- Security: JWT auth, IP filtering, encrypted passwords
- Docker support for easy deployment
- Automated weekly storage reports
- Setup and deployment scripts included
This commit is contained in:
2025-07-22 16:29:53 +02:00
commit bb44b143ec
43 changed files with 6631 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import React from 'react';
import { Box, Typography } from '@mui/material';
const Users: React.FC = () => {
return (
<Box>
<Typography variant="h4" gutterBottom>
Users
</Typography>
<Typography variant="body1" color="text.secondary">
User management functionality coming soon...
</Typography>
</Box>
);
};
export default Users;