GithubHelp home page GithubHelp logo

Comments (7)

kahmali avatar kahmali commented on July 26, 2024

Alright, let me look into this. I have the latest version of Restivus in an app that uses Iron Router fairly extensively, and it's deployed on both meteor and digital ocean and both are working fine. There must be something else to the error besides simply having Restivus in the deployed app. I absolutely hate those Iron Router errors. I get them all the time and the strangest things seem to cause them. So frustrating! I'll check out your repro apps and keep you posted. Thanks for reporting the issue.

from meteor-restivus.

hujhax avatar hujhax commented on July 26, 2024

Thanks! And let me know if there's anything I can do to help.

from meteor-restivus.

kahmali avatar kahmali commented on July 26, 2024

I think you made your test repo private. Could you please add me as a collaborator or make it public so I can check it out?

from meteor-restivus.

hujhax avatar hujhax commented on July 26, 2024

Derp! I am not smarting well today. It's public now.

from meteor-restivus.

kahmali avatar kahmali commented on July 26, 2024

I was able to get it to run when deployed on meteor by making the call to Restivus.add() from within Meteor.startup(). So in lib/restivus.js:
Change:

Restivus.add('test', {
    get: {
        action: function() {
            return "Hello World!";
        }
    }
});

to this:

Meteor.startup(function () {
    Restivus.add('test', {
        get: {
            action: function() {
                return "Hello World!";
            }
        }
    });
});

Would you be able to test that on Heroku when you have a chance and let me know if it works? I will make sure I add that to the docs. I've always done it that way, but I need to say it explicitly in the docs. Sorry about that!

from meteor-restivus.

hujhax avatar hujhax commented on July 26, 2024

We're good on heroku! Thanks so much!

from meteor-restivus.

kahmali avatar kahmali commented on July 26, 2024

Alright, I updated the docs with that information. Sorry if you were alerted each time I rebased that commit. I have to push to test the GitHub markdown, and I was just making some minor cosmetic updates so I had to squash the commits.

from meteor-restivus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.