This is the first tutorial in the low-code development series. Follow along to learn how to set up your development tooling and the Sharetribe Web Template codebase for making custom code changes.
Chapters
Resources used in this video
Commands used in this video
Check package versions
node -v
git -v
yarn -v
Template installation and configuration
yarn install
yarn run config
Cloning the template
git clone https://github.com/sharetribe/web-template.git
Run the template on your computer
yarn run dev
Check current remote repositories
git remote -v
Rename the existing remote
git remote rename origin upstream
Add your own remote
git remote add origin https://github.com/your-github-account/the-name-of-your-new-repo.git
git push origin main
Additional developer documentation
More information on setting up your development environment can be found in Sharetribe's Developer Documentation site. We recommend:
Next
The next video tutorial shows how to deploy the Sharetribe Web Template to the web by using Render. Click here to go to this tutorial.