Skip to content

Commit ee1186a

Browse files
review
1 parent f59317a commit ee1186a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.cursor/rules/general.mdc

-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ This is the official NiceGUI repository. With NiceGUI you can write graphical us
1313
- Vue/Quasar in the frontend
1414
- socket.io for communication between frontend and backend
1515

16-
1716
# Design Decisions
1817

1918
- All user interactions are send to the backend and invoke the proper Python functions.
2019
- Unlike Streamlit the framework took much care to allow easy integration with any other Python libraries.
2120
- NiceGUI only uses one uvicorn worker (to not have to implement/support tricky synchronization).
2221
- The socket.io library is used for managing web sockets. After the initial content is loaded a web socket connection is established and kept open for communication as long as the web page is shown.
23-
-

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ demo.py
1919
tests/.pytest_cache/**/*
2020
**/.ruff_cache
2121
**/*.pyc
22+
**/.cursor
2223
**/.DS_Store
2324
**/.idea
2425
**/.vscode

.syncignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ venv
1010
.idea
1111
.nicegui/
1212
*.sqlite*
13+
.cursor/
1314
.DS_Store
1415
.pytest_cache/
1516
.vscode/

0 commit comments

Comments
 (0)