Skip to content

Commit 0c3eed7

Browse files
committed
Basically Built.
0 parents  commit 0c3eed7

26 files changed

Lines changed: 3784 additions & 0 deletions

.github/workflows/deploy.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
23+
- uses: actions/setup-node@v4
24+
with:
25+
node-version: 20
26+
27+
- name: Install dependencies
28+
run: npm ci
29+
30+
- name: Build
31+
run: npm run build
32+
33+
- uses: actions/upload-pages-artifact@v3
34+
with:
35+
path: dist
36+
37+
deploy:
38+
needs: build
39+
runs-on: ubuntu-latest
40+
environment:
41+
name: github-pages
42+
url: ${{ steps.deployment.outputs.page_url }}
43+
steps:
44+
- id: deployment
45+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build output
5+
dist/
6+
7+
# Vite
8+
*.local
9+
10+
# Environment & secrets
11+
.env
12+
.env.*
13+
!.env.example
14+
15+
# Logs
16+
npm-debug.log*
17+
yarn-debug.log*
18+
yarn-error.log*
19+
pnpm-debug.log*
20+
21+
# Editor / IDE
22+
.vscode/
23+
.idea/
24+
*.swp
25+
*.swo
26+
*~
27+
28+
# OS
29+
.DS_Store
30+
Thumbs.db
31+
32+
# TypeScript
33+
*.tsbuildinfo
34+
35+
# Testing / coverage
36+
coverage/
37+
38+
# Misc
39+
.cache/
40+
41+
# Videos
42+
videos/

index.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
<link rel="icon" type="image/png" href="/moss-vl-logo-textless.png" />
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<title>Video Understanding Demo</title>
14+
</head>
15+
<body class="min-h-screen text-gray-800 antialiased font-sans m-0 p-0 relative overflow-x-hidden sunshine-bg">
16+
<div id="app" class="relative z-10"></div>
17+
<!-- Dynamic light bubbles will be injected by Vue or CSS -->
18+
<div class="bubbles-container pointer-events-none fixed inset-0 z-0 overflow-hidden">
19+
<!-- Bubbles HTML added here for simple CSS animation -->
20+
<div class="bubble"></div>
21+
<div class="bubble"></div>
22+
<div class="bubble"></div>
23+
<div class="bubble"></div>
24+
<div class="bubble"></div>
25+
<div class="bubble"></div>
26+
<div class="bubble"></div>
27+
<div class="bubble"></div>
28+
</div>
29+
<script type="module" src="/src/main.ts"></script>
30+
</body>
31+
</html>

0 commit comments

Comments
 (0)