<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cannot Deploy to HubSpot Account in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154603#M43069</link>
    <description>&lt;P&gt;This one took me ages to figure out myself when I was getting started.&lt;BR /&gt;&lt;BR /&gt;The quickstart project is slightly outdated.&lt;BR /&gt;&lt;BR /&gt;If you take a look at the comments on Hubspots own cms-react project demos:&amp;nbsp;&lt;A href="https://github.com/HubSpot/cms-react/tree/main/examples" target="_blank"&gt;https://github.com/HubSpot/cms-react/tree/main/examples&lt;/A&gt;&lt;BR /&gt;They mention that "As of hs cli v7, hs project upload no longer takes an argument (will fail with "Unknown argument: .")"&lt;BR /&gt;&lt;BR /&gt;Which is exactly what the quickstart project tries to do, take a look inside the package.json to confirm (&lt;A href="https://github.com/HubSpot-Academy/quickstart-guide-to-react-in-cms/blob/main/package.json" target="_blank"&gt;https://github.com/HubSpot-Academy/quickstart-guide-to-react-in-cms/blob/main/package.json&lt;/A&gt; line 21: "deploy": "hs project upload cms-react-project" )&lt;BR /&gt;&lt;BR /&gt;The "&lt;SPAN&gt;hs project upload" advice is correct but you need to run it from inside the right folder.&lt;BR /&gt;&lt;BR /&gt;Where the quickstart guide tells you to "Next double-check you are still in quickstart-guide-to-react-in-cms/ and run npm run deploy", you should instead cd to&amp;nbsp;quickstart-guide-to-react-in-cms&lt;BR /&gt;/cms-react-project or wherever the porject folder is in your current setup (test-react-project01?). I think it should be whereever your&amp;nbsp;hsproject.json is anyway. Then use hs project upload&lt;BR /&gt;&lt;BR /&gt;You could also rewrite the line in the main package.json to&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"deploy": "cd [YOUR PROJECT FOLDER NAME] &amp;amp;&amp;amp; npm run upload"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Then npm run deploy works as expected.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;TLDR&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;- The deploy command in the quikcstart project is outdated&lt;BR /&gt;- It tells hubspot you want to upload the folder&amp;nbsp;cms-react-project but a) you don't seem to be using that folder anymore and b) the project upload command no longer takes arguments like that&lt;/P&gt;&lt;P&gt;- So you need to make sure hs project upload is run from &lt;EM&gt;inside&amp;nbsp;&lt;/EM&gt;the project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/#contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 May 2025 09:36:25 GMT</pubDate>
    <dc:creator>BarryGrennan</dc:creator>
    <dc:date>2025-05-20T09:36:25Z</dc:date>
    <item>
      <title>Cannot Deploy to HubSpot Account</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154414#M43064</link>
      <description>&lt;P&gt;I cannot deploy the tutorial project for the "A Quickstart Guide to React in the CMS" HubSpot Academy course to my HubSpot account, as outlined here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://app.hubspot.com/academy/4492052/?overviewType=LESSON&amp;amp;overviewEntityId=2663073&amp;amp;language=en&amp;amp;ruid=6588135" target="_blank"&gt;https://app.hubspot.com/academy/4492052/?overviewType=LESSON&amp;amp;overviewEntityId=2663073&amp;amp;language=en&amp;amp;ruid=6588135&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I cloned the sample Git repo, ran the global HubSpot CLI tools installs via "npm i -g &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/63720"&gt;@hubspot&lt;/a&gt;/cli", installed dependencies via "npm install" in the root "quickstart-guide-to-react-in-cms" folder, can run and modify the project as suggested by the course (this file was succesfully modified while the app was running in the browser:&amp;nbsp;&lt;/P&gt;&lt;P&gt;"C:\Users\blah\blah\quickstart-guide-to-react-in-cms\cms-react-project\cms-react-app\components\partials").&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;However: when I try to deploy to my account, I get errors:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms&amp;gt; npm run deploy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;gt; deploy&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;gt; hs project upload cms-react-project&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;[ERROR]&lt;/FONT&gt; Unknown argument: cms-react-project&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Another forum post suggested just using "hs project upload", but that also results in an error:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms&amp;gt; hs project upload&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;[ERROR]&lt;/FONT&gt; Unable to locate a project configuration file. Try running again from a project directory, or run `hs project create` to create a new project.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Fine, I run "hs project create," which created a subfolder in the quickstart guide folder:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;PS C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms&amp;gt; hs project create&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;? [--name] Give your project a name: test-react-project01&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;? [--dest] Enter the folder to create the project in: C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms\test-react-project01&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;? [--template] Choose a project template: CRM getting started project with public apps&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[SUCCESS] Project test-react-project01 was successfully created in C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms\test-react-project01&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Welcome to HubSpot Developer Projects!&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;--------------------------------------------------&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;What's next?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tip: All project commands must be run from within a project directory&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Run `hs project upload` to upload your project to your HubSpot account&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Run `hs project dev` to set up your test environment and start local development&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Run `hs project install-deps` to install dependencies for your project components&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Run `hs project --help` to learn more about available project commands&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Run `hs feedback` to report a bug or leave feedback&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;See HubSpot's sample projects: &lt;A href="https://developers.hubspot.com/docs/platform/sample-projects?utm_source=cli&amp;amp;utm_content=project_create_whats_next" target="_blank"&gt;https://developers.hubspot.com/docs/platform/sample-projects?utm_source=cli&amp;amp;utm_content=project_create_whats_next&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--------------------------------------------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I get the same errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms\test-react-project01&amp;gt; npm run deploy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;gt; deploy&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;gt; hs project upload cms-react-project&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[ERROR] Unknown argument: cms-react-project&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FWIW, "cms-react-project" is an earlier attempt which I don't seem to be able to break away from. Trying to specify the project I created and whose folder I'm in also returns errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms\test-react-project01&amp;gt; hs project upload test-react-project01&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[ERROR] Unknown argument: test-react-project01&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is hugely frustrating: I see no answers to this issue which I cannot resolve (it doesn't help that some links in the course are broken, or that the UI is significantly different now than what the course shows). Kind of hard to use local development or React if following your own course materials result in errors. I hope this can be resolved quickly, unlike several other forum posts for similar issues for which correct answers have yet to be provided.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your prompt attention.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 20:08:18 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154414#M43064</guid>
      <dc:creator>jk-sone</dc:creator>
      <dc:date>2025-05-19T20:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Deploy to HubSpot Account</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154541#M43068</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/137505"&gt;@jk-sone&lt;/a&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Community!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to invite some members of our community who may offer valuable insights.— hey &lt;STRONG&gt;&lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/619261"&gt;@FrancoQ&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/857649"&gt;@Bhupendra_Kumar&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/146956"&gt;@BarryGrennan&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/164202"&gt;@SKatjivirue&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/163809"&gt;@JBrake&lt;/a&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/STRONG&gt; - Could you share your advice with &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/137505"&gt;@jk-sone&lt;/a&gt;&lt;/SPAN&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for taking a look!&lt;/P&gt;
&lt;P&gt;Diana&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 06:39:44 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154541#M43068</guid>
      <dc:creator>DianaGomez</dc:creator>
      <dc:date>2025-05-20T06:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Deploy to HubSpot Account</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154603#M43069</link>
      <description>&lt;P&gt;This one took me ages to figure out myself when I was getting started.&lt;BR /&gt;&lt;BR /&gt;The quickstart project is slightly outdated.&lt;BR /&gt;&lt;BR /&gt;If you take a look at the comments on Hubspots own cms-react project demos:&amp;nbsp;&lt;A href="https://github.com/HubSpot/cms-react/tree/main/examples" target="_blank"&gt;https://github.com/HubSpot/cms-react/tree/main/examples&lt;/A&gt;&lt;BR /&gt;They mention that "As of hs cli v7, hs project upload no longer takes an argument (will fail with "Unknown argument: .")"&lt;BR /&gt;&lt;BR /&gt;Which is exactly what the quickstart project tries to do, take a look inside the package.json to confirm (&lt;A href="https://github.com/HubSpot-Academy/quickstart-guide-to-react-in-cms/blob/main/package.json" target="_blank"&gt;https://github.com/HubSpot-Academy/quickstart-guide-to-react-in-cms/blob/main/package.json&lt;/A&gt; line 21: "deploy": "hs project upload cms-react-project" )&lt;BR /&gt;&lt;BR /&gt;The "&lt;SPAN&gt;hs project upload" advice is correct but you need to run it from inside the right folder.&lt;BR /&gt;&lt;BR /&gt;Where the quickstart guide tells you to "Next double-check you are still in quickstart-guide-to-react-in-cms/ and run npm run deploy", you should instead cd to&amp;nbsp;quickstart-guide-to-react-in-cms&lt;BR /&gt;/cms-react-project or wherever the porject folder is in your current setup (test-react-project01?). I think it should be whereever your&amp;nbsp;hsproject.json is anyway. Then use hs project upload&lt;BR /&gt;&lt;BR /&gt;You could also rewrite the line in the main package.json to&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"deploy": "cd [YOUR PROJECT FOLDER NAME] &amp;amp;&amp;amp; npm run upload"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Then npm run deploy works as expected.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;TLDR&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;- The deploy command in the quikcstart project is outdated&lt;BR /&gt;- It tells hubspot you want to upload the folder&amp;nbsp;cms-react-project but a) you don't seem to be using that folder anymore and b) the project upload command no longer takes arguments like that&lt;/P&gt;&lt;P&gt;- So you need to make sure hs project upload is run from &lt;EM&gt;inside&amp;nbsp;&lt;/EM&gt;the project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/#contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 09:36:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154603#M43069</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-05-20T09:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Deploy to HubSpot Account</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154702#M43072</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/146956"&gt;@BarryGrennan&lt;/a&gt;&amp;nbsp;Huge thanks for these clarifications. I did cd into cms-react-project and authorized my developer account with the personal key I generated. BUT: I don't seem to have the correct scopes set up for this account, and I cannot find where I can add them -- I do see they scopes available when I generate the personal key but no clear path for adding them (in a manner similar to the above examples, online references to "App Settings" for accounts seem to be out of date and don't reflect what I see in my account). So, here's the result when I run "hs project upload":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms&amp;gt; cd .\cms-react-project\&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;PS C:\Users\blah\blah\cms-react\quickstart-guide-to-react-in-cms\cms-react-project&amp;gt; hs project upload&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[ERROR] Couldn't execute the request because the access key for blah-cli [test account] (20553458) is missing required scopes. To update scopes, run `hs auth`. Then deactivate the existing key and generate a new one that includes the missing scopes.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Except generating a new key does not provide me an option to add scopes -- as above, it says what's available but no ability from that screen to add them to my account. Any ideas for how to proceed here? Please let me know and many thanks again.&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 13:13:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1154702#M43072</guid>
      <dc:creator>jk-sone</dc:creator>
      <dc:date>2025-05-20T13:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Deploy to HubSpot Account</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1155615#M43105</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/137505"&gt;@jk-sone&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I believe in initial set up, I had to delete my existing auth from my&amp;nbsp;hubspot.config.yml (which you'll have already if you've previously developed themes locally) and re-authorize on that portal as there are new permissions.&lt;BR /&gt;&lt;BR /&gt;I don't think that yml file would be in your cms-react-project, it'd be somehwhere in your&amp;nbsp;C:\Users\blah\blah\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/#contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 09:27:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1155615#M43105</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-05-22T09:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Deploy to HubSpot Account</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1160879#M43192</link>
      <description>&lt;P&gt;I am going to lose my mind over this...&lt;BR /&gt;&lt;BR /&gt;SO: my personal developer account always threw errors, so I created a new dev account, followed the procedure to make my first public app and was trying to generate a personal key so I can finally post a local project to my new HubSpot dev account. However, every time I try to run "hs auth" and open the personal key page for this new account, I get a screen that reads: "Use Projects to build apps with interactive UI extensions" and a button that says "Join beta" -- I cannot tell you how many times I've clicked that "Join beta" button after multiple "hs auth" commands, which only gives me a screen with zero access to any personal key generation.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm quite prepared to give up on HubSpot -- how can there be so many conflicting, non-working directions for what should be a straightforward process?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 15:00:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Cannot-Deploy-to-HubSpot-Account/m-p/1160879#M43192</guid>
      <dc:creator>jk-sone</dc:creator>
      <dc:date>2025-06-04T15:00:27Z</dc:date>
    </item>
  </channel>
</rss>

