Questions tagged [deployd]

Deployd is a tool that makes building APIs simple by providing important ready-made functionality out of the box that meet the demands of complex applications.

115 questions
1
vote
1 answer

Deployd + Swift User Authentication

I'm new to Swift. I want to Authenticate a user. I'm using 'Deployd' as my server. This is what API's documentation says: HTTP To authenticate a user, send a POST request to /login with username and password properties in the request body. POST…
Codetard
  • 2,441
  • 28
  • 34
1
vote
4 answers

Deployd :: Failed To Start MongoDB

I am a beginner in Deployd and MongoDB. I have installed Deployd (www.deployd.com) 0.6.9 on my Windows-XP system. I executed the following command at the prompt as instructed by the book am studying > dpd create sportsstore Now, when I run the…
Eddy Freeman
  • 3,207
  • 6
  • 35
  • 55
1
vote
1 answer

Having issues opening Deployd dashboard

I am a beginner with Deployd (www.deployd.com). I am learning the book "Pro AngularJS" and I have followed at the beginning of chapter 6 all the instructions in order to open the Deployd dashboard in the browser but am getting errors at the command…
Eddy Freeman
  • 3,207
  • 6
  • 35
  • 55
1
vote
2 answers

Unable to start Deployd (MongoDB failed to start)

I am new to Deployd, and am trying to open the dashboard. I started by creating a basic hello-world project folder: $ cd hello-world ...then ran the following to view the dashboard: $ dpd-d However, I am getting the following…
1
vote
2 answers

Cannot run deployd (http://deployd.com/) on my mac

I need to create api by deployd but cannot open it on the localhost. This is my code Variss-Air:nodeServer manjarb$ dpd create sportsstore to start your app: $ cd sportsstore $ dpd Variss-Air:nodeServer manjarb$ cd…
Varis Darasirikul
  • 3,013
  • 5
  • 25
  • 35
1
vote
0 answers

How to bind property to socket object using deployd?

I don't even know if that question makes sense. I don't have a lot of experience with socket.io or deployd. You'll probably understand what I'm trying to do from my code. It's similar to this. Here is my server code. var deployd =…
Timmy Knezevich
  • 67
  • 1
  • 2
  • 8
1
vote
0 answers

deployd - post method to retrieve object

Trying to use deployd.com framework for simulating a backend service. I am fairly new to deployd, appreciate any example or pointer in the right direction. Trying to retrieve an object using POST method. It looks like POST is used to create…
Mogalt
  • 11
  • 2
1
vote
0 answers

how to use TingoDB in stead of MongoDB with Deployd?

We want to use deployd on our homemade device running OpenWRT. As MongoDB would required too much memory, we want to use TingoDB in stead of MongoDB. How to configure Deployd to do so? Thanks a lot!
vpx
  • 380
  • 1
  • 5
  • 14
1
vote
0 answers

redirectURL: for Phonegap iOS Facebook login on Node+Passport.js

Building an iOS app with Phonegap and Passport.js I point to http://www.example.com/auth/facebook?redirectURL=... to login. The server runs on http://www.example.com. The ... is my question! What do I fill there? My files are served locally,…
kvdmolen
  • 183
  • 2
  • 13
1
vote
1 answer

How to install Deployd on AWS Elastic Beanstalk

I am trying to install deployd on AWS Elastic Beanstalk. I created a node.js environment. Locally, I did: npm install depoyd -g I also created a .dpd folder and did dpd keygen Here's my package.json file { "name": "my-api", "version":…
vpx
  • 380
  • 1
  • 5
  • 14
1
vote
1 answer

Running 'dpd keygen' throws an 'ENOENT' error on heroku

I installed deployd on Heroku. When trying to access the dashboard, I get the following message: Use dpd showkey to get your app's key. But running: heroku run dpd keygen gives the following error: { [Error: ENOENT, open '.dpd/keys.json'] errno:…
vpx
  • 380
  • 1
  • 5
  • 14
1
vote
1 answer

Three-Way Data Binding without Firebase

I am looking to make a web app where each person can add to a list and as soon as someone adds something, everyone elses browser shows the new addition. I believe this is called 3-way data binding (I'm new to Ang). From what I can see, this can be…
KriiV
  • 1,882
  • 4
  • 25
  • 43
1
vote
1 answer

Start deployd server

Here's how I'm told I should get started with deployd: $ mkdir deploydapps $ cd deploydapps $ dpd create helloworld $ cd helloworld $ dpd I can do the above no problems. However, here's where I'm stumbling. The instructions say the deployd server…
Starkers
  • 10,273
  • 21
  • 95
  • 158
1
vote
0 answers

Why does nodejs return 404?

I'm trying to create a custom module for a deployd backend to authenticate with the instagram api. The code is as follows: var request = require('request'); var payload = undefined; process.server.on('request', function(req, res) { if (req.url…
bangley
  • 11
  • 2
1
vote
2 answers

Running deployd and angular.js app on the same server

I'm trying to run a deployd API on the same server as my AngularJS app, but deployd seems to be conflicting with the app routing. My deployd server is listening on port 5000 and looks like this: var deployd = require('deployd'); var server =…
Shaun Scovil
  • 3,905
  • 5
  • 39
  • 58