Add initial project structure and documentation
- Created architecture documentation outlining high-level design, module organization, data flow, security model, performance considerations, testing strategy, and deployment architecture. - Added pyproject.toml for project metadata and dependencies management. - Introduced requirements files for development and production dependencies. - Set up testing configuration with pytest and tox. - Established basic directory structure for source code and tests, including __init__.py files. - Implemented a sample web application (index.html) for drag-and-drop functionality. - Configured VS Code workspace settings for Python development.
This commit is contained in:
commit
61aa33633c
34 changed files with 5342 additions and 0 deletions
3
src/webdrop_bridge/ui/__init__.py
Normal file
3
src/webdrop_bridge/ui/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
"""UI module - all graphical components."""
|
||||
|
||||
__all__ = []
|
||||
Loading…
Add table
Add a link
Reference in a new issue