Spaces:
Sleeping
Sleeping
AntDX316
commited on
Commit
·
0f5a3b8
1
Parent(s):
c826ee0
updated
Browse files- project/Dockerfile +14 -0
- project/README.md +17 -0
- project/app.py +2 -1
project/Dockerfile
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9-slim
|
2 |
+
|
3 |
+
WORKDIR /app
|
4 |
+
|
5 |
+
COPY requirements.txt .
|
6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
7 |
+
|
8 |
+
COPY . .
|
9 |
+
|
10 |
+
# Expose the port that the app will run on
|
11 |
+
EXPOSE 7860
|
12 |
+
|
13 |
+
# Command to run the app
|
14 |
+
CMD ["python", "app.py"]
|
project/README.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Simple To-Do List App
|
2 |
+
|
3 |
+
A basic to-do list web application built with Flask.
|
4 |
+
|
5 |
+
## Features
|
6 |
+
- Add new tasks
|
7 |
+
- Delete existing tasks
|
8 |
+
- Clean, responsive user interface
|
9 |
+
|
10 |
+
## Technologies
|
11 |
+
- Flask web framework
|
12 |
+
- HTML/CSS for frontend
|
13 |
+
|
14 |
+
## Setup
|
15 |
+
- Install dependencies: `pip install -r requirements.txt`
|
16 |
+
- Run the application: `python app.py`
|
17 |
+
- Access the application at http://localhost:7860
|
project/app.py
CHANGED
@@ -23,4 +23,5 @@ def delete(task_id):
|
|
23 |
return redirect(url_for('index'))
|
24 |
|
25 |
if __name__ == '__main__':
|
26 |
-
|
|
|
|
23 |
return redirect(url_for('index'))
|
24 |
|
25 |
if __name__ == '__main__':
|
26 |
+
# Use port 7860 for Hugging Face Spaces
|
27 |
+
app.run(debug=True, host='0.0.0.0', port=7860)
|