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
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