From a81636b636956b7fbce9b4ac8f2ec954219929e9 Mon Sep 17 00:00:00 2001 From: seongyeon Date: Thu, 18 Jun 2026 14:30:07 +0900 Subject: [PATCH] =?UTF-8?q?chore(deploy):=20Cloudflare=20Pages=20=EC=A0=84?= =?UTF-8?q?=ED=99=98=20+=20blog.brain-crew.com=20=EB=8F=84=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - docusaurus.config: url을 blog.brain-crew.com으로, baseUrl을 /로 변경 - footer RSS 링크 / robots.txt sitemap을 새 도메인으로 갱신 - GitHub Pages 워크플로우 제거 (Cloudflare Pages Git 연동이 빌드·배포 담당) - __pycache__ gitignore 추가 Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/deploy.yml | 48 ------------------------------------ .gitignore | 5 +++- docusaurus.config.ts | 6 ++--- static/robots.txt | 2 +- 4 files changed, 8 insertions(+), 53 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index e9865d7..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - main - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: pages - cancel-in-progress: false - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Build website - run: npm run build - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: build - - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index a904ec3..683a6dd 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,7 @@ yarn-error.log* .aidesingner/* .agents/skills/aidesigner-frontend/ .aidesigner/ -.claude/* \ No newline at end of file +.claude/* +# Python cache +__pycache__/ +*.pyc diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 88c5de4..1e76fce 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -11,8 +11,8 @@ const config: Config = { v4: true, }, - url: 'https://braincrew-lab.github.io', - baseUrl: '/brain-cache/', + url: 'https://blog.brain-crew.com', + baseUrl: '/', organizationName: 'braincrew-lab', projectName: 'brain-cache', @@ -202,7 +202,7 @@ const config: Config = { }, { label: 'RSS Feed', - href: 'https://braincrew-lab.github.io/brain-cache/blog/rss.xml', + href: 'https://blog.brain-crew.com/blog/rss.xml', }, ], copyright: `© ${new Date().getFullYear()} 브레인크루(주) · 대표이사 이경록
경기도 성남시 분당구 정자로 2, 1602호 · dev@brain-crew.com`, diff --git a/static/robots.txt b/static/robots.txt index 99e333e..39ce1c9 100644 --- a/static/robots.txt +++ b/static/robots.txt @@ -1,4 +1,4 @@ User-agent: * Allow: / -Sitemap: https://braincrew-lab.github.io/brain-cache/sitemap.xml +Sitemap: https://blog.brain-crew.com/sitemap.xml