У нас вы можете посмотреть бесплатно Set up a development environment for a Sharetribe marketplace или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Learn how to set up a development environment for a Sharetribe marketplace. Chapters 00:00 Introduction 00:34 Install a code editor 01:05 Install Git 01:35 Install Node.js 02:59 Configure Git 04:10 Clone the Sharetribe Web Template repository 06:19 Set up the necessary environment variables 08:19 Add your own remote repository to track your custom changes 12:38 Recap Find the tutorial in Sharetribe's Help Center: https://www.sharetribe.com/help/en/ar... Thinking about starting your own marketplace? Learn more about Sharetribe at www.sharetribe.com. Find the links and commands used in the video below. Download links: Visual Studio Code – https://code.visualstudio.com/download Git – https://git-scm.com/downloads Node.js – https://nodejs.org/ Yarn – https://classic.yarnpkg.com/en/docs/i... Check package versions: node -v git -v yarn -v Git configuration instructions – https://git-scm.com/book/en/v2/Gettin... Public Web Template repository – https://github.com/sharetribe/web-tem... Template installation and configuration: yarn install yarn run config 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-accoun... git push origin main