Selaa lähdekoodia

Added cheeky line back to default route.

Was used in a raywenderlich.com tutorial and Héctor mentioned that it may confuse people if it's not there.
Fosco Marotto 9 vuotta sitten
vanhempi
commit
5c1a7bca62
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      index.js

+ 1 - 1
index.js

@@ -36,7 +36,7 @@ app.use(mountPath, api);
 
 // Parse Server plays nicely with the rest of your web routes
 app.get('/', function(req, res) {
-  res.status(200).send('Make sure to star the parse-server repo on GitHub!');
+  res.status(200).send('I dream of being a website.  Please star the parse-server repo on GitHub!');
 });
 
 // There will be a test page available on the /test path of your server url