From 5d5cec048fd8c223a915c6c298c736536380939e Mon Sep 17 00:00:00 2001 From: serversdwn Date: Tue, 17 Feb 2026 22:50:57 +0000 Subject: [PATCH] chore: reband cleanup, changed names from tesseract --- backend/app/database.py | 2 +- backend/app/main.py | 4 ++-- docker-compose.yml | 8 ++++---- frontend/index.html | 2 +- frontend/package.json | 2 +- frontend/src/App.jsx | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/backend/app/database.py b/backend/app/database.py index 20a85c7..e11607c 100644 --- a/backend/app/database.py +++ b/backend/app/database.py @@ -2,7 +2,7 @@ from sqlalchemy import create_engine from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import sessionmaker -SQLALCHEMY_DATABASE_URL = "sqlite:///./tesseract.db" +SQLALCHEMY_DATABASE_URL = "sqlite:///./bit.db" engine = create_engine( SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False} diff --git a/backend/app/main.py b/backend/app/main.py index 7640ff3..5e5add9 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -11,7 +11,7 @@ from .database import engine, get_db models.Base.metadata.create_all(bind=engine) app = FastAPI( - title="Tesseract - Nested Todo Tree API", + title="BIT - Break It Down API", description="API for managing deeply nested todo trees", version="1.0.0" ) @@ -271,6 +271,6 @@ def root(): """API health check""" return { "status": "online", - "message": "Tesseract API - Nested Todo Tree Manager", + "message": "BIT API - Break It Down", "docs": "/docs" } diff --git a/docker-compose.yml b/docker-compose.yml index 6c081c6..2bded4a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,12 +5,12 @@ services: build: context: ./backend dockerfile: Dockerfile - container_name: tesseract-backend + container_name: bit-backend ports: - "8000:8000" volumes: - ./backend/app:/app/app - - tesseract-db:/app + - bit-db:/app environment: - PYTHONUNBUFFERED=1 restart: unless-stopped @@ -19,7 +19,7 @@ services: build: context: ./frontend dockerfile: Dockerfile - container_name: tesseract-frontend + container_name: bit-frontend ports: - "3000:80" depends_on: @@ -27,4 +27,4 @@ services: restart: unless-stopped volumes: - tesseract-db: + bit-db: diff --git a/frontend/index.html b/frontend/index.html index 2418f35..5bcdc8d 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,7 @@ - Tesseract - Task Decomposition Engine + BIT - Break It Down
diff --git a/frontend/package.json b/frontend/package.json index 741b44d..8ffa86e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,5 +1,5 @@ { - "name": "tesseract-frontend", + "name": "bit-frontend", "private": true, "version": "1.0.0", "type": "module", diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 79d44d8..b8accb5 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -10,8 +10,8 @@ function App() {

- TESSERACT - Task Decomposition Engine + BIT + Break It Down v0.1.3