Spaces:
Sleeping
Sleeping
Abdelkareem
commited on
Commit
β’
1a32ce8
1
Parent(s):
1f8d29c
deploy at 2024-12-22 23:26:24.699681
Browse files- .gitignore +10 -0
- Dockerfile +10 -0
- README.md +7 -10
- explore.md +9 -0
- todo.md +10 -0
.gitignore
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
examples/
|
2 |
+
data/
|
3 |
+
__pycache__/
|
4 |
+
gens/
|
5 |
+
.sesskey
|
6 |
+
food_sql.ipynb
|
7 |
+
image_app.py
|
8 |
+
todo.ipynb
|
9 |
+
todo.py
|
10 |
+
|
Dockerfile
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.10
|
2 |
+
WORKDIR /code
|
3 |
+
COPY --link --chown=1000 . .
|
4 |
+
RUN mkdir -p /tmp/cache/
|
5 |
+
RUN chmod a+rwx -R /tmp/cache/
|
6 |
+
ENV HF_HUB_CACHE=HF_HOME
|
7 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
8 |
+
|
9 |
+
ENV PYTHONUNBUFFERED=1 PORT=7860
|
10 |
+
CMD ["python", "main.py"]
|
README.md
CHANGED
@@ -1,14 +1,11 @@
|
|
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: docker
|
7 |
-
|
8 |
-
app_file: main.py
|
9 |
pinned: false
|
10 |
-
|
11 |
-
short_description: kam caloire with fasthtml
|
12 |
---
|
13 |
-
|
14 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
+
|
2 |
---
|
3 |
+
title: Abdelkareem/kam_caloire
|
4 |
+
emoji: π
|
5 |
+
colorFrom: purple
|
6 |
+
colorTo: red
|
7 |
sdk: docker
|
8 |
+
app_file: app.py
|
|
|
9 |
pinned: false
|
10 |
+
termination_grace_period: 2m
|
|
|
11 |
---
|
|
|
|
explore.md
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
- Heading => return "<h1>" Hello, World</h1>
|
2 |
+
- pagnation => use post ,get and href,actions
|
3 |
+
|
4 |
+
## Learned
|
5 |
+
|
6 |
+
1. How to create head
|
7 |
+
2. How to create body,link.img..etc
|
8 |
+
|
9 |
+
## How to?
|
todo.md
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
1. headings in Arabic
|
2 |
+
2. seach bar
|
3 |
+
3. footer
|
4 |
+
4. header
|
5 |
+
5. Top
|
6 |
+
6. Trending This month
|
7 |
+
7. Elementpage
|
8 |
+
8. SEO
|
9 |
+
9. XMl
|
10 |
+
10. Deploy, tag management
|