Skip to content

kanade0404/game-blog-v2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game Blog V2

build ci codeql ci storybook cd

Setup

cp .env.example .env
# If you have not yet set up an API TOKEN for DatoCMS and Chromatic project token, please get one from a member.
pnpm i && pnpm dev

library

Directories

tree -L 2 -d -I node_modules/ -I coverage/ -I storybook-static/
.
├── app
│   ├── api # Draft ModeのAPI
│   ├── article
│   ├── components
│   ├── privacy
│   └── profile
├── lib
│   ├── api # GraphQL CodeGeneratorの生成コード
│   ├── graphql # GraphQL API呼び出し
│   ├── schema # GraphQL schema格納先
│   └── time
├── public
├── stories
│   ├── Layout
│   └── Profile
└── test # テストに必要なセットアップコード群

17 directories