- The development branch is
master. - All pull requests should be opened against
master.
To develop locally:
-
Clone the
next-pwarepository:git clone https://github.com/DuCanhGH/next-pwa -- --depth=3000 --branch master --single-branch
-
Create a new branch:
git checkout -b MY_BRANCH_NAME origin/master
-
Install the dependencies with:
pnpm install
-
cdintodocs:cd docs -
Start developing:
pnpm dev
And then edit the content in
docs/content. The app should automatically reflect the changes! -
When your changes are finished, commit them to the branch:
git add . git commit -m "DESCRIBE_YOUR_CHANGES_HERE" -
When you are ready to push, make a fork and then run:
git remote set-url origin https://github.com/YOURNAME/next-pwa git push