-
Notifications
You must be signed in to change notification settings - Fork 357
Getting started
Jason Rosa edited this page Apr 29, 2021
·
6 revisions
The HubSpot CMS Boilerplate is designed to work with both local development and the HubSpot Design Manager.
Before getting started, you will need to have Node.js installed, the HubSpot CMS CLI installed, and we strongly suggest that you set up a HubSpot CMS Developer Sandbox for your QA/testing environment.
- Navigate to the directory that you want to use for your project
- Run
hs create website-theme <directory>
to create a project from the HubSpot CMS Boilerplate - Configure the local development tools for the portal(s) you'd like to use for your project.
- Run
hs watch --portal=<portal> src <directory> --initial-upload
to upload all the files in the project and watch for changes to files in thesrc
directory
Please reference our Quick start guide to developing on the HubSpot CMS and our Getting started with local development articles for more information.
- Fork the HubSpot CMS Boilerplate repository and clone your forked repository to your computer
-
Set up GitHub secrets in your forked repository to encrypt sensitive information from showing publically for
HUBSPOT_PORTAL_ID
andHUBSPOT_PERSONAL_ACCESS_KEY
- Update the name of the directory that you'll be deploying to in your Design Manager in the
.github/workflows/deploy.yml
file (the current defaultdest_dir
iscms-theme-boilerplate
) - Deploy changes to your Design Manager by pushing to the
main
branch of your forked repository
Please reference our HubSpot CMS deploy GitHub action page and Setting up continuous integration with a GitHub repository using GitHub Actions article for more information.