Closed brandonhall closed 11 years ago
Did you check in your smart.json
and smart.lock
? It looks like meteorite on heroku doesn't think you're using the router...
Yes, it looks like it's good. Here's the smart.lock
file:
{
"meteor": {
"git": "https://github.com/meteor/meteor.git",
"branch": "master",
"commit": "2d8b41a87cec884489ead138b5dfea31487363f3"
},
"dependencies": {
"basePackages": {
"router": {},
"font-awesome": {},
"bafa": {}
},
"packages": {
"router": {
"git": "https://github.com/tmeasday/meteor-router.git",
"tag": "v0.3.5",
"commit": "e8e63db2411204f0a6589b74dd591babbfb2da1a"
},
"font-awesome": {
"git": "https://github.com/nate-strauser/meteor-font-awesome.git",
"tag": "v0.1.3",
"commit": "e507577b97827de662866304f8b9d3d553e3912f"
},
"bafa": {
"git": "https://github.com/jackp/BAFA.git",
"tag": "v0.3.0",
"commit": "cf8c9b0be42b21cb0203c6d08926529c4e00b0c6"
},
"page-js": {
"git": "https://github.com/tmeasday/meteor-page-js.git",
"tag": "v1.3.5",
"commit": "c652f795a86498aa4609ab637a694710421cb218"
}
}
}
}
Oh, I mean did you make sure they are checked into your git repo, so that they are getting pushed to heroku..?
The smart.lock file is checked in but not the smart.json. I also have .meteor/local
in my .gitignore. Is that my problem here?
Yes, you need to commit smart.json
. .meteor/local
should not be committed, that's fine.
Great, thanks so much for the help!
I'm not sure if this issue is related to the BuildPack or the Router package. After creating a new app on Heroku and setting the root url, I use
git push heroku master
and then this happens:Any ideas what's going on here?