grigoryvp
grigoryvp

Reputation: 42483

How to correctly create expressjs app on facebook parse?

I'm learning http://parse.com and follow onsite tutorial to create expressjs "parse hosting" app.

I created a deployed simple app withou problems, it's accessible via <subdomain>.parseapp.com and displays public/index.html:

parse new
parse deploy

After that I generated expressjs app via:

parse generate

and modified main.js as instructed by adding following as a first string:

require('cloud/app.js');

Unfortunately, after deploying modified app it still displays index.html content. Seems it's some setting like "enable expressjs" that I can't see in documentation or app settings. Any hints?

Upvotes: 3

Views: 61

Answers (1)

riyadhalnur
riyadhalnur

Reputation: 404

Did you change the code in index.html? Express/Node is the server powering your app which is serving the index page. Unless you make changes to the HTML in the index page, you'll keep seeing the original generated file.

Upvotes: 1

Related Questions