Skip to content

Commit 8c573ad

Browse files
authored
Rename repo as heroku/nodejs-getting-started (#368)
[W-18962249](https://gus.lightning.force.com/lightning/r/ADM_Work__c/a07EE00002HNztCYAT/view)
1 parent 15d898a commit 8c573ad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This application supports the tutorials for both the [Cedar and Fir generations]
1212
Make sure you have [Node.js](http://nodejs.org/) and the [Heroku CLI](https://cli.heroku.com/) installed.
1313

1414
```sh
15-
$ git clone https://github.com/heroku/node-js-getting-started.git # or clone your own fork
15+
$ git clone https://github.com/heroku/nodejs-getting-started.git # or clone your own fork
1616
$ cd node-js-getting-started
1717
$ npm install
1818
$ npm start

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Start on Heroku: Node.js",
33
"description": "A barebones Node.js app using Express 4",
4-
"repository": "https://github.com/heroku/node-js-getting-started",
4+
"repository": "https://github.com/heroku/nodejs-getting-started",
55
"keywords": ["node", "express", "heroku"],
66
"image": "heroku/nodejs"
77
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "https://github.com/heroku/node-js-getting-started"
22+
"url": "https://github.com/heroku/nodejs-getting-started"
2323
},
2424
"keywords": [
2525
"node",

views/pages/index.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<p>This is a sample Node application deployed to Heroku. It's a reasonably simple app - but a good foundation for understanding how to get the most out of the Heroku platform.</p>
1818
<a type="button" class="btn btn-lg btn-default" href="https://devcenter.heroku.com/articles/getting-started-with-nodejs"><span class="glyphicon glyphicon-flash"></span> Getting Started on Heroku with Node.js</a>
1919
<a type="button" class="btn btn-lg btn-default" href="https://devcenter.heroku.com/articles/getting-started-with-nodejs-fir"><span class="glyphicon glyphicon-flash"></span> Getting Started on Heroku Fir with Node.js</a>
20-
<a type="button" class="btn btn-lg btn-primary" href="https://github.com/heroku/node-js-getting-started"><span class="glyphicon glyphicon-download"></span> Source on GitHub</a>
20+
<a type="button" class="btn btn-lg btn-primary" href="https://github.com/heroku/nodejs-getting-started"><span class="glyphicon glyphicon-download"></span> Source on GitHub</a>
2121
</div>
2222
</div>
2323
<div class="container">
@@ -34,7 +34,7 @@
3434
<h3><span class="glyphicon glyphicon-info-sign"></span> How this sample app works</h3>
3535
<ul>
3636
<li>This app was deployed to Heroku using Git.</li>
37-
<li>When Heroku received the source code, it fetched all the dependencies in the <a href="https://github.com/heroku/node-js-getting-started/blob/main/package.json">package.json</a>, creating a deployable build artifact.</li>
37+
<li>When Heroku received the source code, it fetched all the dependencies in the <a href="https://github.com/heroku/nodejs-getting-started/blob/main/package.json">package.json</a>, creating a deployable build artifact.</li>
3838
<li>The platform then spins up a dyno, a lightweight container that provides an isolated environment in which the build artifact can be mounted and executed.</li>
3939
<li>You can scale your app, manage it, and deploy over <a href="https://addons.heroku.com/">150 add-on services</a>, from the Dashboard or CLI.</li>
4040
</ul>

0 commit comments

Comments
 (0)