Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ASIS -> TOBE にリネーム #159

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BACKEND_URL=https://graphql-engine.asis-be.orb.local/v1/graphql
BACKEND_URL=https://graphql-engine.tobe-be.orb.local/v1/graphql
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* @tatsutakein-jp/asis-quest-maintainers
* @tatsutakein-jp/tobe-quest-maintainers

/.github/ @tatsutakein
/tools/ @tatsutakein
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -58,8 +58,8 @@ TBD

Thanks to our wonderful contributors!

<a href="https://github.com/tatsutakein-jp/asis.quest/graphs/contributors">
<img src="https://contrib.rocks/image?repo=tatsutakein-jp/asis.quest" alt="Contributors" />
<a href="https://github.com/tatsutakein-jp/tobe.quest/graphs/contributors">
<img src="https://contrib.rocks/image?repo=tatsutakein-jp/tobe.quest" alt="Contributors" />
</a>

## Repo Activity
Expand All @@ -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.
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "asisquest",
"name": "tobe.quest",
"private": true,
"version": "2024.7.2",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://asis.quest/sitemap-index.xml
Sitemap: https://tobe.quest/sitemap-index.xml
4 changes: 2 additions & 2 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ const currentYear = new Date().getFullYear()

<footer>
<div class="group">
<p>&copy; {currentYear} @tatsutakein-jp/asis-quest-maintainers</p>
<p>&copy; {currentYear} @tatsutakein-jp/tobe-quest-maintainers</p>
</div>
<p class="socials">
<a href="https://github.com/tatsutakein-jp/asis.quest"> GitHub</a>
<a href="https://github.com/tatsutakein-jp/tobe.quest"> GitHub</a>
</p>
</footer>
<style>
Expand Down
4 changes: 2 additions & 2 deletions src/components/MainHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface Props {
description?: string | undefined
}

const { title = 'ASIS', description = 'The quest to live life as it is' } = Astro.props
const { title = 'TOBE', description = 'The quest to live life as it is' } = Astro.props

const canonicalURL = new URL(Astro.url.pathname, Astro.site)
const socialImageURL = new URL('/ogp.png', Astro.url)
Expand All @@ -26,7 +26,7 @@ const socialImageURL = new URL('/ogp.png', Astro.url)
<meta property="og:image" content={socialImageURL} />
<meta property="og:url" content={canonicalURL} />
<meta property="og:description" content={description} />
<meta property="og:site_name" content="ASIS" />
<meta property="og:site_name" content="TOBE" />
<meta name="twitter:card" content="summary_large_image" />

<link rel="preconnect" href="https://fonts.googleapis.com"/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Nav.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const iconLinks: {
}[] = [
{
label: 'GitHub',
href: 'https://github.com/tatsutakein-jp/asis.quest',
href: 'https://github.com/tatsutakein-jp/tobe.quest',
icon: 'github-logo'
}
]
Expand All @@ -27,7 +27,7 @@ const iconLinks: {
<div class="menu-header">
<a href="/" class="site-title">
<Icon icon="terminal-window" color="var(--accent-regular)" size="1.6em" gradient />
ASIS
TOBE
</a>
<menu-button>
<template>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const prerender = true
<div class="wrapper stack gap-8 lg:gap-20">
<header class="hero">
<Hero
title="ASIS"
title="TOBE"
tagline="The quest to live life as it is"
align="start"
>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/privacy.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import BaseLayout from '@/layouts/BaseLayout.astro'
title="プライバシーポリシー"
>
<p>
本プライバシーポリシーは、当アプリ(ASIS)が収集し、利用する全ての個人情報を対象として、当アプリが保有する個人情報に関する基本的な取り決めを定めるものとします。
本プライバシーポリシーは、当アプリ(TOBE)が収集し、利用する全ての個人情報を対象として、当アプリが保有する個人情報に関する基本的な取り決めを定めるものとします。
</p>

<h2>法律、法令等の遵守</h2>
Expand Down
Loading