This is New Feature & upgration in 2025 #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Title :
Updated
routes.py
, requirements.txt, and added Dockerfile for better app setupDescription :
What I did:
In this pull request, I made several updates to improve the application setup and dependencies. Here are the main changes:
routes.py
: Improved routing logic for better application flow.requirements.txt
: Removed old versions of libraries and added new ones to ensure compatibility with the latest features.Dockerfile
: Created a Dockerfile to containerize the app, making it easier to deploy and run the application in different environments.Changes made :
routes.py
to streamline request handling.requirements.txt
.How I tested it :
Next Steps :
docker build -t flask-app .
and run it withdocker run -p 5000:5000 flask-app
.