Skip to content

Commit

Permalink
Fix getting started directory (src -> getting-started-app)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmfin committed Jun 24, 2024
1 parent 9905e5b commit bec8292
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/getting-started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To run this example project locally, navigate to the `getting-started-project/ge
npm run start
```

*This example makes use of a weather API through [RapidAPI](https://rapidapi.com/search?term=weatherapi-com&sortBy=ByRelevance). You will need to go through the process of singing up for this service (free) to fully see this example in action. Once you have an API Key you can add it to `getting-started-project/src/utils.ts` at the `apiKey` constant.*
_This example makes use of a weather API through [RapidAPI](https://rapidapi.com/search?term=weatherapi-com&sortBy=ByRelevance). You will need to go through the process of singing up for this service (free) to fully see this example in action. Once you have an API Key you can add it to `getting-started-project/getting-started-app/utils.ts` at the `apiKey` constant._

Then navigate to [http://hslocal.net:3000](http://hslocal.net:3000) to see an index page that links to all your modules. Click on the "local version" of the "Weather" module.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<body>
<div class="body-wrapper {{ builtin_body_classes }}">
{% block header %}
{% module 'main header' path="@projects/getting-started-project/src/components/modules/Header" %}
{% module 'main header' path="@projects/getting-started-project/components/modules/Header" %}
{% endblock header %}

{# The main-content ID is used for the navigation skipper in the header.html file. More information on the navigation skipper can be found here: https://github.com/HubSpot/cms-theme-boilerplate/wiki/Accessibility #}
Expand All @@ -26,7 +26,7 @@
{% endblock body %}

{% block footer %}
{% module 'footer' path="@projects/getting-started-project/src/components/modules/Footer" %}
{% module 'footer' path="@projects/getting-started-project/components/modules/Footer" %}
{% endblock footer %}
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

{% module
"weather"
path="@projects/getting-started-project/src/components/modules/Weather",
path="@projects/getting-started-project/components/modules/Weather",
%}

{% endblock body %}

0 comments on commit bec8292

Please sign in to comment.