Commit
·
a276831
1
Parent(s):
acb2b2c
chore: Remove README generation step in Hugging Face workflow
Browse files- .github/workflows/main.yml +1 -48
- Dockerfile +1 -0
.github/workflows/main.yml
CHANGED
@@ -16,54 +16,7 @@ jobs:
|
|
16 |
ref: main
|
17 |
fetch-depth: 0
|
18 |
lfs: true
|
19 |
-
|
20 |
-
- name: Update README for Hugging Face Space
|
21 |
-
run: |
|
22 |
-
cat > README.md << 'EOL'
|
23 |
-
---
|
24 |
-
title: Sheer
|
25 |
-
emoji: 🚀
|
26 |
-
colorFrom: indigo
|
27 |
-
colorTo: purple
|
28 |
-
sdk: static
|
29 |
-
pinned: true
|
30 |
-
---
|
31 |
-
|
32 |
-
# Sheer
|
33 |
-
|
34 |
-
## About
|
35 |
-
|
36 |
-
This Space showcases a modern React application built with Bun and Vite. It demonstrates the power of modern web technologies combined with seamless deployment.
|
37 |
-
|
38 |
-
## Features
|
39 |
-
|
40 |
-
- Fast and responsive UI built with React and Tailwind CSS
|
41 |
-
- Optimized build process using Bun and Vite
|
42 |
-
- Modern development experience with TypeScript
|
43 |
-
- Comprehensive UI component library
|
44 |
-
|
45 |
-
## How to Use
|
46 |
-
|
47 |
-
Simply explore the application in this Space! The app is statically hosted and ready to use.
|
48 |
-
|
49 |
-
## Technologies Used
|
50 |
-
|
51 |
-
- React 19
|
52 |
-
- Bun
|
53 |
-
- Vite
|
54 |
-
- TypeScript
|
55 |
-
- Tailwind CSS
|
56 |
-
- Radix UI Components
|
57 |
-
|
58 |
-
## Development
|
59 |
-
|
60 |
-
This Space is automatically updated via GitHub Actions from the repository. The main branch is directly pushed to this Space.
|
61 |
-
|
62 |
-
## License
|
63 |
-
|
64 |
-
See LICENSE file for details.
|
65 |
-
EOL
|
66 |
-
|
67 |
- name: Push to Hugging Face Hub
|
68 |
env:
|
69 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
|
|
16 |
ref: main
|
17 |
fetch-depth: 0
|
18 |
lfs: true
|
19 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
- name: Push to Hugging Face Hub
|
21 |
env:
|
22 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
Dockerfile
CHANGED
@@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y \
|
|
9 |
curl \
|
10 |
git \
|
11 |
build-essential \
|
|
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
13 |
|
14 |
# Install Bun
|
|
|
9 |
curl \
|
10 |
git \
|
11 |
build-essential \
|
12 |
+
unzip \
|
13 |
&& rm -rf /var/lib/apt/lists/*
|
14 |
|
15 |
# Install Bun
|