feat: add docker and docker-compose for local development#190
Open
Suryank7 wants to merge 1 commit into
Open
Conversation
|
@Suryank7 is attempting to deploy a commit to the komalsony234-1530's projects Team on Vercel. A member of the Team first needs to authorize it. |
Owner
|
@Suryank7 first create the issue, and only after you are assigned, you can start working on the PR |
Author
|
I have created the issue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Related Issue
None
Description
This pull request containerizes the local development environment for the Flask application by introducing a
Dockerfileanddocker-compose.yml. This allows future contributors to easily spin up the project without having to manually configure their global Python environments or deal with local dependency conflicts.Type of PR
Screenshots / Videos (if applicable)
N/A — Developer Experience (DX) enhancement.
Checklist
Additional Context
By using Docker, we establish a clean, reproducible setup phase. Developers can now simply run
docker-compose upto boot the application in debug mode on port 5000, significantly lowering the barrier to entry for new open-source contributors.