From 2939d059ae65411f8bc45cec450a52f7ddaba579 Mon Sep 17 00:00:00 2001 From: Ryo Takeuchi Date: Thu, 31 Oct 2024 07:57:16 +0900 Subject: [PATCH] feat: asis -> tobe --- .env.sample | 2 +- .github/CODEOWNERS | 2 +- .github/workflows/cd.yml | 2 +- .github/workflows/preview.yml | 2 +- .github/workflows/production.yml | 2 +- README.md | 10 +++++----- astro.config.mjs | 2 +- package.json | 2 +- public/robots.txt | 2 +- src/components/Footer.astro | 4 ++-- src/components/MainHead.astro | 4 ++-- src/components/Nav.astro | 4 ++-- src/pages/index.astro | 2 +- src/pages/privacy.astro | 2 +- 14 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.env.sample b/.env.sample index cff060a..9647a6e 100644 --- a/.env.sample +++ b/.env.sample @@ -1 +1 @@ -BACKEND_URL=https://graphql-engine.asis-be.orb.local/v1/graphql +BACKEND_URL=https://graphql-engine.tobe-be.orb.local/v1/graphql diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 5834e20..c0e6075 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,4 @@ -* @tatsutakein-jp/asis-quest-maintainers +* @tatsutakein-jp/tobe-quest-maintainers /.github/ @tatsutakein /tools/ @tatsutakein diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 7470c56..3c6cdac 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -13,7 +13,7 @@ jobs: deploy: uses: ./.github/workflows/wc-deploy-cloudflare-pages.yml with: - project-name: 'asis-quest' + project-name: 'tobe-quest' branch: 'staging' gh-app-id: ${{ vars.BOT_APP_ID }} pr-comment-enabled: false diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 4ceed43..67d02ea 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -16,7 +16,7 @@ jobs: needs: changed if: needs.changed.outputs.website == 'true' with: - project-name: 'asis-quest' + project-name: 'tobe-quest' branch: 'preview' gh-app-id: ${{ vars.BOT_APP_ID }} pr-comment-enabled: true diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 923da1f..f37925a 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -14,7 +14,7 @@ jobs: deploy: uses: ./.github/workflows/wc-deploy-cloudflare-pages.yml with: - project-name: 'asis-quest' + project-name: 'tobe-quest' branch: 'main' gh-app-id: ${{ vars.BOT_APP_ID }} pr-comment-enabled: false diff --git a/README.md b/README.md index 8410c0a..dfc592c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![renovate](https://img.shields.io/badge/maintaied%20with-renovate-blue?logo=renovatebot)](https://app.renovatebot.com/dashboard) -[![GitHub last commit (branch)](https://img.shields.io/github/last-commit/tatsutakein-jp/asis.quest)](https://github.com/tatsutakein-jp/asis.quest/commits/main/) +[![GitHub last commit (branch)](https://img.shields.io/github/last-commit/tatsutakein-jp/tobe.quest)](https://github.com/tatsutakein-jp/tobe.quest/commits/main/) -# asis.quest +# tobe.quest ## Features @@ -58,8 +58,8 @@ TBD Thanks to our wonderful contributors! - - Contributors + + Contributors ## Repo Activity @@ -68,5 +68,5 @@ Thanks to our wonderful contributors! ## License -asis.quest is distributed under the terms of the MIT License. See the [license](LICENSE) for more +tobe.quest is distributed under the terms of the MIT License. See the [license](LICENSE) for more information. diff --git a/astro.config.mjs b/astro.config.mjs index 3ed4de3..3872fd3 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,7 +4,7 @@ import { defineConfig } from 'astro/config' // https://astro.build/config export default defineConfig({ - site: 'https://asis.quest', + site: 'https://tobe.quest', integrations: [sitemap()], output: 'server', adapter: cloudflare() diff --git a/package.json b/package.json index 43ef0f5..6289e3c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "asisquest", + "name": "tobe.quest", "private": true, "version": "2024.7.2", "license": "MIT", diff --git a/public/robots.txt b/public/robots.txt index 53c5584..2a13723 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -1,4 +1,4 @@ User-agent: * Allow: / -Sitemap: https://asis.quest/sitemap-index.xml +Sitemap: https://tobe.quest/sitemap-index.xml diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 048ab62..cb6ccb5 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -4,10 +4,10 @@ const currentYear = new Date().getFullYear()