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