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