Skip to content

Commit 24c8c49

Browse files
committed
frontend/ → editor/ 리네임, 다크모드 기본, 강조색 #f97316, README 영문, 랜딩 다크퍼스트
- frontend/ 디렉토리를 editor/로 리네임 (Python, Rust, CI, 문서 전체 동기화) - httpx를 런타임 → dev dependency로 이동 - 에디터/랜딩 강조색을 #f97316 (orange-500)으로 통일 - 다크모드를 기본 테마로 설정, NotebookShell 리액티브 테마 적용 - README를 영문 오픈소스 표준으로 재작성 (marimo 벤치마크 기술 중립 설명) - 랜딩 CSS를 다크퍼스트로 전환, 마스코트 확대, 글래스모피즘 카드
1 parent ee40087 commit 24c8c49

230 files changed

Lines changed: 317 additions & 354 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Run tests
3434
run: uv run pytest tests/ -v --tb=short
3535

36-
frontend:
36+
editor:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v4
@@ -43,14 +43,14 @@ jobs:
4343
with:
4444
node-version: "22"
4545
cache: "npm"
46-
cache-dependency-path: frontend/package-lock.json
46+
cache-dependency-path: editor/package-lock.json
4747

4848
- name: Install
49-
working-directory: frontend
49+
working-directory: editor
5050
run: npm ci
5151

5252
- name: Build
53-
working-directory: frontend
53+
working-directory: editor
5454
run: npm run build
5555

5656
landing:

.github/workflows/pypi-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ jobs:
2828
with:
2929
node-version: "22"
3030
cache: "npm"
31-
cache-dependency-path: frontend/package-lock.json
31+
cache-dependency-path: editor/package-lock.json
3232

33-
- name: Build frontend
34-
working-directory: frontend
33+
- name: Build editor
34+
working-directory: editor
3535
run: |
3636
npm ci
3737
npm run build
3838
39-
- name: Copy frontend build to package
39+
- name: Copy editor build to package
4040
run: |
4141
rm -rf src/codaro/webBuild
42-
cp -r frontend/build src/codaro/webBuild
42+
cp -r editor/build src/codaro/webBuild
4343
4444
- name: Run tests
4545
run: uv run pytest tests/ -v --tb=short

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ _backup/
2727

2828
# Node modules (all locations)
2929
node_modules/
30-
frontend/.svelte-kit/
30+
editor/.svelte-kit/
3131
src/codaro/webBuild/
3232
launcher/target/
3333
launcher/cargo-test.log

CLAUDE.md

Lines changed: 5 additions & 4 deletions

README.md

Lines changed: 73 additions & 135 deletions

docs/branding/README.md

Lines changed: 2 additions & 2 deletions

docs/getting-started/first-notebook.md

Lines changed: 1 addition & 1 deletion

docs/getting-started/installation.md

Lines changed: 4 additions & 4 deletions

docs/guides/local-server.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)