File size: 9,810 Bytes
61d29fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
---
sidebar_position: 4
---

# Hugging Face Spaces Deployment

Complete guide to deploy Open Navigator to Hugging Face Spaces with all three applications running together.

## πŸ“‹ What Gets Deployed

This deployment runs **all three apps** in a single Docker Space:

| Component | Access Path | Description |
|-----------|-------------|-------------|
| **Documentation** | `/docs` | Docusaurus documentation site |
| **Main App** | `/` | React frontend application |
| **API** | `/api` | FastAPI backend server |

All served through nginx reverse proxy on port 7860 (Hugging Face Spaces default).

## πŸš€ Quick Start for Developers

**TL;DR** - Deploy in 3 commands:

```bash
# 1. Set your Hugging Face username in .env
echo "HF_USERNAME=your_username" >> .env

# 2. Run the deployment script (includes testing)
./deploy-huggingface.sh

# 3. Configure your Space
# - Go to https://huggingface.co/spaces/YOUR_USERNAME/www.communityone.com
# - Settings β†’ Resource configuration β†’ Select "CPU Basic"
# - Settings β†’ Variables and secrets β†’ Add your API keys
```

The script will:
1. βœ… Test Docusaurus build (catches config errors)
2. βœ… Test Docker build locally (validates deployment)
3. βœ… Create the Space on Hugging Face
4. βœ… Push your code
5. βœ… Trigger automatic build (~10-15 minutes)

**Note**: This project uses **Apache 2.0 license** (updated from MIT in April 2026).


## πŸ’° Cost Breakdown

### Required:
- **CPU Basic Hardware**: ~$0.03/hour = ~$22/month
  - 2 vCPU, 16 GB RAM
  - Required to run Docker Spaces

### Optional:
- **Pro Plan**: $9/month
  - Persistent storage (keeps data between restarts)
  - Better performance
  - Private Spaces option
  - Longer timeout limits

**Total Cost**: $22-31/month depending on plan

## πŸ› οΈ Prerequisites

1. **Hugging Face Account**: Sign up at [huggingface.co](https://huggingface.co)
2. **Hugging Face Token**: Create at [Settings β†’ Access Tokens](https://huggingface.co/settings/tokens)
   - Needs `write` permission
3. **API Keys**: Your OpenAI/Anthropic keys for LLM features
4. **Git**: Installed locally

## πŸ“¦ Step 1: Prepare Your Repository

The deployment files are already created:
```
.huggingface/
  β”œβ”€β”€ README.md              # Space description (shown on HF)
  β”œβ”€β”€ nginx.conf             # Reverse proxy config
  β”œβ”€β”€ supervisord.conf       # Process manager config
  └── start.sh               # Startup script
Dockerfile.huggingface       # Multi-stage Docker build
```

## πŸš€ Step 2: Create the Hugging Face Space

### Option A: Using the Web UI

1. Go to [huggingface.co/new-space](https://huggingface.co/new-space)
2. Configure:
   - **Space name**: `open-navigator-for-engagement`
   - **License**: `Apache 2.0`
   - **Space SDK**: Select `Docker`
   - **Visibility**: Public or Private
3. Click **Create Space**

### Option B: Using the CLI

```bash
# Install huggingface-hub
pip install huggingface-hub

# Login with your token
huggingface-cli login

# Create the Space
huggingface-cli repo create open-navigator-for-engagement --type space --space-sdk docker
```

## πŸ“€ Step 3: Deploy Your Code

### Option A: Automated Deployment (Recommended)

Use the deployment script for easy one-command deployment:

**Step 1: Set your username**

Add to your `.env` file:
```bash
echo "HF_USERNAME=your_hf_username" >> .env
```

Or export for current session:
```bash
export HF_USERNAME=getcommunityone  # Replace with your username
```

**Step 2: Run deployment script**
```bash
./deploy-huggingface.sh
```

The script automatically:
- Creates the Space on Hugging Face
- Sets up deployment branch
- Configures Dockerfile and README
- Pushes to Hugging Face

You can also pass username as argument: `./deploy-huggingface.sh YOUR_USERNAME`

### Option B: Manual Deployment

If you prefer manual control:

```bash
# Add Hugging Face as a remote
git remote add hf https://huggingface.co/spaces/YOUR_USERNAME/open-navigator-for-engagement

# Create a deployment branch with the right Dockerfile
git checkout -b huggingface-deploy

# Rename Dockerfile.huggingface to Dockerfile (HF looks for this)
cp Dockerfile.huggingface Dockerfile

# Copy the HF README to root (HF displays this)
cp .huggingface/README.md README_HF.md

# Commit changes
git add Dockerfile README_HF.md .huggingface/
git commit -m "Configure Hugging Face Space deployment"

# Push to Hugging Face
git push hf huggingface-deploy:main
```

## πŸ”§ Step 4: Configure Space Settings

1. Go to your Space: `https://huggingface.co/spaces/YOUR_USERNAME/open-navigator-for-engagement`
2. Click **Settings**
3. Under **Resource configuration**:
   - Select **CPU Basic** (minimum required)
   - Or **CPU Upgrade** for better performance
4. Under **Variables and secrets** (⚠️ IMPORTANT):
   - Add your API keys as secrets:
     ```
     OPENAI_API_KEY = sk-your-key-here
     ANTHROPIC_API_KEY = sk-ant-your-key-here
     HUGGINGFACE_TOKEN = hf_your-token-here
     ```
   - Set environment variables:
     ```
     LOG_LEVEL = INFO
     PYTHONUNBUFFERED = 1
     ```
5. Click **Save**

## πŸ”„ Step 5: Wait for Build

The Space will automatically build when you push. This takes **10-15 minutes**:

1. Building documentation (Docusaurus)
2. Building frontend (React + Vite)
3. Installing Python dependencies
4. Configuring nginx reverse proxy
5. Starting services

Watch build progress in the **Logs** tab.

## βœ… Step 6: Verify Deployment

Once built, test each component:

### 1. Check Main App
```
https://YOUR_USERNAME-open-navigator-for-engagement.hf.space/
```
Should show the React dashboard.

### 2. Check Documentation
```
https://YOUR_USERNAME-open-navigator-for-engagement.hf.space/docs
```
Should show Docusaurus docs.

### 3. Check API
```
https://YOUR_USERNAME-open-navigator-for-engagement.hf.space/api/docs
```
Should show FastAPI Swagger docs.

### 4. Test API Endpoint
```bash
curl https://YOUR_USERNAME-open-navigator-for-engagement.hf.space/api/health
```
Should return: `{"status": "healthy"}`

## πŸ”„ Updating Your Space

When you make changes to your code:

```bash
# Make your changes in your main branch
git checkout main
# ... make edits ...
git commit -am "Update feature X"

# Merge to deployment branch
git checkout huggingface-deploy
git merge main

# Update Dockerfile if needed
cp Dockerfile.huggingface Dockerfile
git add Dockerfile
git commit -m "Update deployment"

# Push to Hugging Face
git push hf huggingface-deploy:main
```

The Space will automatically rebuild.

## πŸ› Troubleshooting

### Build Fails

**Check logs**: Click **Logs** tab in your Space

**Common issues**:
- Missing dependencies β†’ Check `requirements.txt`
- Node.js build errors β†’ Check `package.json` versions
- Out of memory β†’ Upgrade to larger hardware

### App Doesn't Start

1. Check environment variables are set
2. Verify API keys are correct
3. Check logs for Python errors
4. Ensure port 7860 is exposed

### 404 Errors

- `/` works but `/docs` doesn't β†’ Check nginx.conf routing
- `/api` returns 404 β†’ Check FastAPI is running on port 8000
- Static files not loading β†’ Check build output directories

### Performance Issues

- **Slow response**: Upgrade to CPU Upgrade or GPU
- **Timeouts**: Enable Pro plan for longer limits
- **Out of memory**: Reduce concurrent workers or upgrade hardware

## πŸ“Š Monitoring

### View Logs
```
Settings β†’ Logs β†’ Container logs
```

### Check Resource Usage
```
Settings β†’ Resource configuration β†’ Usage metrics
```

### Monitor API Calls
FastAPI automatically logs requests to `/var/log/supervisor/api.log`

## πŸ”’ Security Best Practices

### Secrets Management
βœ… DO:
- Add API keys in Space Settings β†’ Variables and secrets
- Use `Secrets` (encrypted), not `Variables` for sensitive data
- Set secrets as "Private" in settings

❌ DON'T:
- Commit `.env` files with real keys
- Hardcode secrets in code
- Share your Space's API keys

### Access Control
- Set Space to **Private** if using sensitive data
- Use Hugging Face OAuth for user authentication
- Enable rate limiting in FastAPI

## πŸ’‘ Optimization Tips

### Reduce Build Time
1. Use smaller Docker base images
2. Cache npm dependencies
3. Use multi-stage builds (already configured)

### Improve Performance
1. Enable gzip compression (already configured in nginx)
2. Set cache headers for static assets (already configured)
3. Use CDN for large static files

### Save Costs
1. Use **CPU Basic** instead of GPU (unless you need it)
2. Set **Sleep timeout** for inactive Spaces
3. Use **Persistent storage** only if needed (requires Pro)

## 🎯 Advanced: Custom Domain

Hugging Face Spaces supports custom domains:

1. Go to Space Settings
2. Under **Custom domain**
3. Add your domain (e.g., `opennavigator.org`)
4. Configure DNS:
   ```
   CNAME record: opennavigator.org β†’ YOUR_USERNAME-open-navigator-for-engagement.hf.space
   ```

## πŸ“š Additional Resources

- [Hugging Face Spaces Documentation](https://huggingface.co/docs/hub/spaces)
- [Docker Spaces Guide](https://huggingface.co/docs/hub/spaces-sdks-docker)
- [Space Configuration](https://huggingface.co/docs/hub/spaces-config-reference)

## πŸ†˜ Getting Help

- **Hugging Face Discord**: [hf.co/join/discord](https://hf.co/join/discord)
- **GitHub Issues**: [Your repo issues](https://github.com/getcommunityone/open-navigator-for-engagement/issues)
- **Space Discussions**: Comment on your Space page

---

## πŸŽ‰ Next Steps

After deployment:
1. βœ… Test all three apps thoroughly
2. βœ… Share your Space URL with users
3. βœ… Monitor usage and costs
4. βœ… Set up persistent storage if needed (Pro plan)
5. βœ… Configure custom domain (optional)

**Your Space URL**:
```
https://huggingface.co/spaces/YOUR_USERNAME/open-navigator-for-engagement
```

Enjoy your fully deployed civic engagement platform! πŸš€