Gyan Panchal
Gyan Panchal

Reputation: 21

Meteor Build does not make public folder

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

Answers (2)

user3413723
user3413723

Reputation: 12263

I found all the files in my public folder at

bundle/programs/web.browser/app/

Upvotes: 3

soisystems
soisystems

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

Related Questions