0

All:

I am trying to follow the tutorial on deepstreamhub

there is one section talking about how to add deepstream in,

new Vue({
    el: '#app',
    data: {
        ds: null,
    },
    created: function() {
        this.ds = deepstream('<YOUR APP URL>')
        .login()
    }
})

I wonder How can I get my "<YOUR APP URL>"?

Thanks

Kuan
  • 11,149
  • 23
  • 93
  • 201

2 Answers2

0

I am not sure if this answer is useful at the moment or not, but as per the news from January 2018, deepstreamhub platform was shutdown and not up and running, hence you are unable to register/signup for an account.

Here is the answer from one of the founders of deepstreamhub which you might want to read.

Saransh Singh
  • 730
  • 4
  • 11
0

Your app url should be an ip on which you run deepstream server. For example if you use it locally it can be;

this.ds = deepstream('localhost:6020')

6020 is the default port