Documents
git remote rename origin template # origin → template
gh repo create # Create your remote repository by GitHub CLI
git push -u origin main # Push to your repository
template:main
: This repository
origin:main
: Your remote repository
gh
command by GitHub CLI
orgit remote add origin ~~~
Make sure to install the dependencies
yarn install
Start the development server on http://localhost:3000
yarn dev
Build the application for production:
yarn build
Checkout the deployment documentation.