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