gterrono / houston

A zero-config, Django Admin-like admin for Meteor
https://atmospherejs.com/houston/admin
MIT License
808 stars 97 forks source link

Houston not working on new meteor application as well as the existing application #384

Open psaelango opened 7 years ago

psaelango commented 7 years ago

@gterrono I am trying to add the the houston admin in both the existing project which has multiple users with roles and collections. But when i visit http://localhost:3000/admin/collection - the page was blank. Similarly I tried adding houston admin in plain/template meteor project and i visited http://localhost:3000/admin/login - the page was blank too. I am not sure whether i am missing any dependency package or I am doing it wrong!!

Below are the screenshots of the url's

1 2

[Note: I tried to add collections to houston too - Houston.add_collection(collection);]

psaelango commented 7 years ago

This is weird. After several hours I found out that I have to add iron:router before I add houston:admin. Somehow the dependency iron:router installed along with houston:admin raises an exception - Exception in callback of async function: Error: Handler with name 'hookWithOptions' already exists. .. Once I add iron:router separately in the plain/template meteor project, I can able to see the login panel on http://localhost:3000/admin/login..

capture

Hope this is an issue which has to be taken care of .. Just FYI .