syw1516 commited on
Commit
24dafe3
Β·
verified Β·
1 Parent(s): ac93d42

Upload index.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +118 -18
index.html CHANGED
@@ -1,19 +1,119 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>OpenClaw Backups</title>
7
+ <style>
8
+ body {
9
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
10
+ max-width: 800px;
11
+ margin: 50px auto;
12
+ padding: 20px;
13
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
14
+ color: white;
15
+ min-height: 100vh;
16
+ }
17
+ .container {
18
+ background: rgba(255, 255, 255, 0.1);
19
+ backdrop-filter: blur(10px);
20
+ border-radius: 20px;
21
+ padding: 40px;
22
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
23
+ }
24
+ h1 {
25
+ font-size: 2.5em;
26
+ margin-bottom: 10px;
27
+ }
28
+ .emoji {
29
+ font-size: 3em;
30
+ display: block;
31
+ margin-bottom: 20px;
32
+ }
33
+ .info {
34
+ background: rgba(255, 255, 255, 0.2);
35
+ padding: 20px;
36
+ border-radius: 10px;
37
+ margin: 20px 0;
38
+ }
39
+ .file-list {
40
+ background: rgba(0, 0, 0, 0.3);
41
+ padding: 20px;
42
+ border-radius: 10px;
43
+ margin: 20px 0;
44
+ }
45
+ code {
46
+ background: rgba(0, 0, 0, 0.3);
47
+ padding: 2px 8px;
48
+ border-radius: 4px;
49
+ font-family: 'Courier New', monospace;
50
+ }
51
+ .status {
52
+ display: inline-block;
53
+ padding: 5px 15px;
54
+ border-radius: 20px;
55
+ background: #4CAF50;
56
+ color: white;
57
+ font-weight: bold;
58
+ margin-top: 10px;
59
+ }
60
+ a {
61
+ color: #ffeb3b;
62
+ text-decoration: none;
63
+ }
64
+ a:hover {
65
+ text-decoration: underline;
66
+ }
67
+ </style>
68
+ </head>
69
+ <body>
70
+ <div class="container">
71
+ <span class="emoji">πŸ’Ύ</span>
72
+ <h1>OpenClaw Automated Backups</h1>
73
+ <p>This Hugging Face Space stores automated backups of OpenClaw data.</p>
74
+
75
+ <div class="status">βœ… Active</div>
76
+
77
+ <div class="info">
78
+ <h3>πŸ“¦ What's Backed Up</h3>
79
+ <ul>
80
+ <li>βœ… Session transcripts</li>
81
+ <li>βœ… Memory files (MEMORY.md, daily notes)</li>
82
+ <li>βœ… Configuration files</li>
83
+ <li>βœ… Workspace files</li>
84
+ <li>βœ… Cron jobs</li>
85
+ <li>βœ… Tasks and flows</li>
86
+ </ul>
87
+ </div>
88
+
89
+ <div class="info">
90
+ <h3>πŸ“… Schedule</h3>
91
+ <p><strong>Local backups:</strong> Daily at 2:00 AM UTC</p>
92
+ <p><strong>Cloud uploads:</strong> Daily at 3:00 AM UTC</p>
93
+ <p><strong>Retention:</strong> 7 days local, unlimited in cloud</p>
94
+ </div>
95
+
96
+ <div class="file-list">
97
+ <h3>πŸ“ Backup Files</h3>
98
+ <p>Backups are stored in the <code>/backups/</code> directory as compressed tar.gz archives.</p>
99
+ <p>Format: <code>openclaw-backup-YYYYMMDD_HHMMSS.tar.gz</code></p>
100
+ </div>
101
+
102
+ <div class="info">
103
+ <h3>πŸ”§ Restore Instructions</h3>
104
+ <ol>
105
+ <li>Download the latest backup tarball from the <code>/backups/</code> directory</li>
106
+ <li>Extract: <code>tar -xzf openclaw-backup-YYYYMMDD_HHMMSS.tar.gz</code></li>
107
+ <li>Copy contents back to <code>/root/.openclaw/</code></li>
108
+ <li>Restart: <code>openclaw gateway restart</code></li>
109
+ </ol>
110
+ </div>
111
+
112
+ <p style="margin-top: 30px; font-size: 0.9em; opacity: 0.8;">
113
+ <strong>Owner:</strong> syw1516<br>
114
+ <strong>Created:</strong> 2026-04-30<br>
115
+ <strong>Powered by:</strong> <a href="https://openclaw.ai" target="_blank">OpenClaw</a>
116
+ </p>
117
+ </div>
118
+ </body>
119
  </html>