Add Hugging Face Space configuration to README
Browse files- PUSH_TO_GITHUB.md +31 -0
- README.md +11 -0
PUSH_TO_GITHUB.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Push to GitHub - Quick Steps
|
| 2 |
+
|
| 3 |
+
## Step 1: Create GitHub Repository
|
| 4 |
+
|
| 5 |
+
1. Go to: https://github.com/new
|
| 6 |
+
2. Repository name: `shadow` (or `shadow-of-lillya`)
|
| 7 |
+
3. Description: "Completing The Shadow of Lillya by Audrey Berger Welz"
|
| 8 |
+
4. Choose **Public** or **Private**
|
| 9 |
+
5. **DO NOT** check "Initialize with README" (we already have files)
|
| 10 |
+
6. Click **"Create repository"**
|
| 11 |
+
|
| 12 |
+
## Step 2: Push to GitHub
|
| 13 |
+
|
| 14 |
+
After creating the repository, run:
|
| 15 |
+
|
| 16 |
+
```bash
|
| 17 |
+
# Add GitHub remote
|
| 18 |
+
git remote add origin https://github.com/garywelz/shadow.git
|
| 19 |
+
|
| 20 |
+
# Push to GitHub
|
| 21 |
+
git push -u origin clean-main:main
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
(Replace `shadow` with your repository name if different)
|
| 25 |
+
|
| 26 |
+
## Current Status
|
| 27 |
+
|
| 28 |
+
- ✅ Code is on Hugging Face: https://huggingface.co/spaces/garywelz/shadow
|
| 29 |
+
- ⏳ Waiting for GitHub repository creation
|
| 30 |
+
- ⏳ Then push to GitHub
|
| 31 |
+
|
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# The Shadow of Lillya - Novel Completion Project
|
| 2 |
|
| 3 |
## About This Project
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: The Shadow of Lillya
|
| 3 |
+
emoji: 📚
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: "1.28.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
# The Shadow of Lillya - Novel Completion Project
|
| 13 |
|
| 14 |
## About This Project
|