Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.3 KB

README.md

File metadata and controls

36 lines (29 loc) · 1.3 KB

Product Design Wiki

実行コマンド

yarn を推奨していますが、npm コマンドの利用も可能です。

Command Action
yarn install Installs dependencies
yarn dev Starts local dev server at localhost:3000
yarn build Build your production site to ./dist/
yarn preview Preview your build locally, before deploying
yarn astro ... Run CLI commands like astro add, astro check
yarn astro --help Get help using the Astro CLI

ディレクトリ構造

/
├── public/
├── src/
│   └── layouts/
│   └── pages/
│       └── documents/
│           └── *.md
│       └── index.astro
└── package.json

[WIP]用語の追加方法

  • ドキュメント追加用ブランチを作成。
  • src/pages/documents配下に、_template.mdを参考に Markdown ファイルを作成。
  • ドキュメントを書く。
  • mainブランチへの Pull Request を作ってメンバーにレビューしてもらう。
  • レビュー完了後mainブランチへマージ。