ポモドーロタイマー機能を追加 - #23
Open
a-ito-adinte wants to merge 1 commit into
Open
Conversation
a-ito-adinte
marked this pull request as draft
October 24, 2025 02:38
a-ito-adinte
marked this pull request as ready for review
October 24, 2025 02:39
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.
This pull request introduces the initial implementation of a Pomodoro timer web application using Flask for the backend and HTML/CSS/JavaScript for the frontend. The changes cover backend setup, frontend UI and timer logic, project architecture documentation, feature specification, and basic testing. Below are the most important changes grouped by theme:
Backend Setup & Routing
app.pyto initialize a Flask application with a route for rendering the main timer page (index.html).Frontend Implementation
templates/index.htmlfor the timer UI, including display, controls (start/stop/reset), and status.static/js/timer.jsimplementing the timer logic (countdown, start/stop/reset, status changes) in JavaScript.static/css/style.cssfor styling the timer page, buttons, and layout.Documentation & Feature Specification
architecture.mdoutlining the overall architecture, design decisions, directory structure, and extensibility considerations.features.mdlisting required and optional features for the Pomodoro timer app.Testing
test_app.pywith a basic unit test to verify the main route renders correctly and contains expected HTML elements.These changes provide a solid foundation for further development of the Pomodoro timer application, including UI/UX enhancements, backend API expansion, and additional features.