Reputation: 21
I am building my app using meteor build /directory_path it doses not give any error but when its process complete then the app.tar.gz does not have any public folder and does not have any forms/html pages which I have created in app.
my app directory is like this client/templets/home/other directories this directory have my html forms and js files
other directory such as /lib have js files that should accessed by client and server both /public have images foder /server have js code that should run on server
help me. what should I do
Upvotes: 1
Views: 965
Reputation: 12263
I found all the files in my public folder at
bundle/programs/web.browser/app/
Upvotes: 3
Reputation: 194
I've run into the same problem following that same site's walkthrough for installing on Ubuntu 12.04.
Referring to another walkthrough: https://github.com/phusion/passenger/wiki/Phusion-Passenger:-Meteor-tutorial
it directs you to create the public directory yourself, as well as a tmp directory at the root of your app directory on the host. So you essentially end up with:
myapp/bundle
myapp/public
myapp/tmp
and of course you will have to edit the virtual host document root line to reflect that location. This worked to get things up and running for me.
Upvotes: 0