Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -12,29 +12,25 @@ short_description: Streamlit template space
|
|
12 |
---
|
13 |
# AI-Powered Reminder System
|
14 |
|
15 |
-
|
16 |
-
- Voice note recording
|
17 |
-
- AI-powered insights
|
18 |
-
- Calendar view
|
19 |
-
- Priority management
|
20 |
-
- Speech-to-text & text-to-speech
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
git clone https://huggingface.co/spaces/<your-username>/reminder-app
|
32 |
-
cd reminder-app
|
33 |
-
pip install -r requirements.txt
|
34 |
|
35 |
-
|
36 |
|
37 |
-
|
|
|
38 |
|
39 |
-
|
40 |
-
|
|
|
|
12 |
---
|
13 |
# AI-Powered Reminder System
|
14 |
|
15 |
+
To run this app on Hugging Face Spaces:
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
1. Create a new Space with **Docker** as the SDK
|
18 |
+
2. Add these files to your repository:
|
19 |
+
- `run_app.py` (main entry point)
|
20 |
+
- `app.py` (main application)
|
21 |
+
- `requirements.txt`
|
22 |
+
3. Configure the Space with these settings:
|
23 |
+
- Hardware: CPU Basic
|
24 |
+
- Dockerfile: Use the following:
|
25 |
|
26 |
+
```Dockerfile
|
27 |
+
FROM python:3.9-slim
|
|
|
|
|
|
|
28 |
|
29 |
+
WORKDIR /app
|
30 |
|
31 |
+
COPY requirements.txt .
|
32 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
33 |
|
34 |
+
COPY . .
|
35 |
+
|
36 |
+
CMD ["python", "run_app.py"]
|