Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Features

- **Infinite canvas** — Draw shapes, sticky notes, and connectors with [tldraw](https://tldraw.dev)
- **Infinite canvas** — Draw shapes, sticky notes, and connectors with [Excalidraw](https://excalidraw.com)
- **Workspaces & boards** — Organize work by workspace; star and revisit recent boards
- **Real-time collaboration** — Live updates via WebSockets and Redis pub/sub
- **Auth** — Email/password and OAuth (GitHub, Google)
Expand All @@ -14,7 +14,7 @@

| Layer | Stack |
|-----------|--------|
| Frontend | React 19, Vite 7, TypeScript, Tailwind CSS 4, tldraw, Zustand, react-router-dom |
| Frontend | React 19, Vite 7, TypeScript, Tailwind CSS 4, Excalidraw, Zustand, react-router-dom |
| Backend | FastAPI, Python 3.12+, SQLAlchemy, Alembic, Pydantic |
| Data | PostgreSQL 17, Redis 7 |
| Auth | JWT, bcrypt, OAuth 2 (GitHub, Google) |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""[INIT] Initial migration

Revision ID: 2bca60200873
Revision ID: 24b35055e774
Revises:
Create Date: 2026-03-13 22:02:16.013906
Create Date: 2026-03-14 18:56:46.209221

"""

Expand All @@ -13,7 +13,7 @@
from sqlalchemy.dialects import postgresql

# revision identifiers, used by Alembic.
revision: str = "2bca60200873"
revision: str = "24b35055e774"
down_revision: Union[str, Sequence[str], None] = None
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
Expand Down Expand Up @@ -131,10 +131,7 @@ def upgrade() -> None:
sa.PrimaryKeyConstraint("id"),
)
op.create_index(
op.f("ix_workspace_members_user_id"),
"workspace_members",
["user_id"],
unique=False,
op.f("ix_workspace_members_user_id"), "workspace_members", ["user_id"], unique=False
)
op.create_index(
op.f("ix_workspace_members_workspace_id"),
Expand Down
2 changes: 1 addition & 1 deletion api/app/app/modules/elements/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from app.modules.users.model import User
from app.modules.workspaces.repository import is_member as workspace_is_member

VALID_TYPES = {"shape", "sticky_note", "text", "arrow", "connector", "tldraw_snapshot"}
VALID_TYPES = {"shape", "sticky_note", "text", "arrow", "connector", "excalidraw_snapshot"}


def get_element(db: Session, element_id: UUID, user: User) -> Element | None:
Expand Down
Loading
Loading