DAOs docs.
- cd
docs
to go into the project root yarn
to install the website's npm dependencies
yarn start
to start the hot-reloading development server (powered by Docusaurus)- open
http://localhost:3000
to open the site in your favorite browser
git checkout main
from any folder in your localdocs
repositorygit pull origin main
to ensure you have the latest main codegit checkout -b the-name-of-my-branch
(replacingthe-name-of-my-branch
with a suitable name) to create a branch
git add -A && git commit -m "My Contributing message"
(replacingMy Contributing message
with a commit message, such asFix a typo in
) to stage and commit your changesgit push my-fork-name the-name-of-my-branch
- Go to the docs repo and you should see recently pushed branches.
- Follow GitHub's instructions.