We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54ce05 commit 7eaea73Copy full SHA for 7eaea73
index.js
@@ -33,7 +33,11 @@ app.use(mountPath, api);
33
34
// Parse Server plays nicely with the rest of your web routes
35
app.get('/', function(req, res) {
36
- res.sendFile(path.join(__dirname, '/public/index.html'));
+ res.status(200).send('I dream of being a web site.');
37
+});
38
+
39
+app.get('/test', function(req, res) {
40
+ res.sendFile(path.join(__dirname, '/public/test.html'));
41
});
42
43
var port = process.env.PORT || 1337;
public/index.html renamed to public/test.html
@@ -81,7 +81,7 @@
81
</div>
82
<div class="pure-u-4-5">
83
<p id="local-parse-working">
84
- Congrats! Our local Parse is server working. :)
+ Congrats! Our local Parse server is working. :)
85
</p>
86
87
0 commit comments