Skip to content

Commit c46922e

Browse files
author
Aurora Development Team
committed
Add missing project folders and update configuration
- Added static/css/style.css for web styling - Added templates/index.html for web interface - Added uploads/README.md for upload documentation - Updated config/config.yaml with proper encryption key - Ensures all project components are available in repository
1 parent 44ded23 commit c46922e

4 files changed

Lines changed: 102 additions & 1 deletion

File tree

config/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ api_server:
7575

7676
security:
7777
enable_authentication: false
78-
encryption_key: "YOUR_ENCRYPTION_KEY_HERE"
78+
encryption_key: "7yFddkFBZsud_rGEtxESzpiv7c88J5gEWdORF8zRzTo="
7979
api_keys:
8080
internal: "YOUR_INTERNAL_API_KEY_HERE"
8181
external: "YOUR_EXTERNAL_API_KEY_HERE"

static/css/style.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* Nebula AI Framework - Static CSS */
2+
body {
3+
font-family: 'Inter', sans-serif;
4+
margin: 0;
5+
padding: 0;
6+
background: #0a0a0f;
7+
color: #ffffff;
8+
}
9+
10+
.container {
11+
max-width: 1200px;
12+
margin: 0 auto;
13+
padding: 20px;
14+
}
15+
16+
.header {
17+
background: linear-gradient(135deg, #00ffcc, #0099ff);
18+
padding: 20px;
19+
text-align: center;
20+
border-radius: 10px;
21+
margin-bottom: 20px;
22+
}
23+
24+
.btn {
25+
background: #00ffcc;
26+
color: #000;
27+
padding: 10px 20px;
28+
border: none;
29+
border-radius: 5px;
30+
cursor: pointer;
31+
transition: all 0.3s ease;
32+
}
33+
34+
.btn:hover {
35+
background: #0099ff;
36+
transform: translateY(-2px);
37+
}
38+
39+
.card {
40+
background: rgba(255, 255, 255, 0.1);
41+
border-radius: 10px;
42+
padding: 20px;
43+
margin-bottom: 20px;
44+
backdrop-filter: blur(10px);
45+
}

templates/index.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Nebula AI Framework</title>
7+
<link rel="stylesheet" href="/static/css/style.css">
8+
</head>
9+
<body>
10+
<div class="container">
11+
<div class="header">
12+
<h1>Nebula AI Framework</h1>
13+
<p>Advanced Enterprise Intelligence Platform</p>
14+
</div>
15+
16+
<div class="card">
17+
<h2>System Status</h2>
18+
<p>Framework is running and operational</p>
19+
<button class="btn" onclick="checkHealth()">Check Health</button>
20+
</div>
21+
22+
<div class="card">
23+
<h2>API Endpoints</h2>
24+
<ul>
25+
<li>Health Check: <code>GET /health</code></li>
26+
<li>Predictions: <code>POST /predict</code></li>
27+
</ul>
28+
</div>
29+
</div>
30+
31+
<script>
32+
async function checkHealth() {
33+
try {
34+
const response = await fetch('/health');
35+
const data = await response.json();
36+
alert('System Status: ' + data.status);
37+
} catch (error) {
38+
alert('Error checking system health');
39+
}
40+
}
41+
</script>
42+
</body>
43+
</html>

uploads/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Uploads Directory
2+
3+
This directory contains uploaded files for the Nebula AI Framework.
4+
5+
## Structure
6+
- `transformer_embeddings/` - Pre-trained embedding files
7+
- `data/` - Uploaded data files
8+
- `models/` - Uploaded model files
9+
10+
## Notes
11+
- Files in this directory are processed by the data pipeline
12+
- Large files are handled with appropriate memory management
13+
- File validation is performed before processing

0 commit comments

Comments
 (0)