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
0
votes
1 answer

dpd-email / nodemailer wont attatch file

Trying to att. a file using dpd-email (its using nodemailer) by examples in nodemailer (https://github.com/andris9/Nodemailer#attachments) This just gives me a file of 'attachment-1.bin' 0kb of size tried using diffrent post examples from the…
Thomas
  • 123
  • 1
  • 1
  • 12
0
votes
1 answer

deployd Error: Cannot find module 'deployd/lib/resource'

i installed the file-upload module in deployd and cannot more start the deployd server. To install, i used those commands: npm install dpd-fileupload --save cd dpd-fileupload npm link and when i start the server, i get this error Error loading…
emoleumassi
  • 4,881
  • 13
  • 67
  • 93
0
votes
1 answer

Deployd comparison and swift with alamofire

I am trying to query data from my Deployd API with alamofire. How is it possible to do a comparison in a request. I have something like: let parameters = ["number": ["gt": 3]] Manager.sharedInstance.request(.GET,…
emoleumassi
  • 4,881
  • 13
  • 67
  • 93
0
votes
1 answer

deployd mongodb connection error

I'm learning Angular js and trying to run deployd server. Followed http://terraltech.com/how-to-setup-deployd-on-ubuntu-server/ steps mentioned here. When I try to add a row from deployd dashboard am getting below error as a…
Kranthi
  • 1,377
  • 1
  • 17
  • 34
0
votes
1 answer

Limit objects that are returned from a Deployd query in Swift

I'm using Deployd as back-end for my Swift application. This is how I'm querying the JSON data currently. I need to limit the amount of objects that are returned from a query. I'll implement the pagination part myself. I just want to know that how…
Codetard
  • 2,441
  • 28
  • 34
0
votes
0 answers

How can I signup with Username + Email + Password [Swift + Deployd]?

How can I make Alamofire(swift-ios) and Deployd accept third parameter (property) i.e., an email? It's working fine but I need to add an email textfield too. Swift code: let user = "root" let password = "root" //let email =…
Codetard
  • 2,441
  • 28
  • 34
0
votes
1 answer

Error Message: Node.exe is not a valid Win32 Application

I have installed www.deployd.com on my Windows-XP PC for learning purposes. The book am studying ask me to execute the following command at the prompt :: > dpd create sportsstore but i get the following error message Node.exe is not a valid Win32…
Eddy Freeman
  • 3,207
  • 6
  • 35
  • 55
0
votes
1 answer

Deployd dpd "app" - listening on port then goes right to "bye"

I had deployd running just fine on my MAC OS, then I let it sit for a couple weeks. Went back to it, launching the Deployd server with "dpd app_name" I get the following: listening on port 2403 type help for a list of commands dpd > bye I've tried…
user1988824
  • 2,947
  • 2
  • 22
  • 27
0
votes
2 answers

Deployd (Node.js) only accepts local connections

I can't connect to my deployd server externally on 45.55.183.253:5000. I can connect to it locally with no problems. I am running ubuntu 12.04 at Digital Ocean. A netstat -ntap shows the following: tcp 0 0 0.0.0.0:5000 …
Nicolaid
  • 65
  • 2
  • 6
0
votes
1 answer

Deployd and universal/isomorphic React app

Long story short, I got this deployd "server.js" var deployd = require('deployd'); ... var server = deployd(options); server.listen(); And then there's a "public" folder that my React app resides in. Right now I just use the Deployd for the API to…
user1340531
  • 720
  • 1
  • 10
  • 21
0
votes
1 answer

deployd's dashboard when use like express middleware

I just started using NodeJS and want to use deployd like Express middleware ( Use this doc - http://docs.deployd.com/docs/server/work-with-express.html). But i don't understand routers work (so deep for me now). So, i can't reach the dashboard.…
0
votes
1 answer

Deployd error date must be string

I got an date column in deployd type of string. Value etc. 2015-06-24T22:00:00.955Z But when i i try to update an other column in that row, deployd gives me the error date must be string I tried to convert the column to number, put then i cant put…
0
votes
2 answers

Mac OS - Deployd - mongod fails to start

I'm trying to use Deployd on my Mac. I've installed mongoDB and added it's bin folder to my $PATH - mongod runs perfectly with my user. The problem appears when I try to run Deployd, mongod fails to run. I runned it with DEBUG=* dpdand the results…
Guidog
  • 1
  • 2
0
votes
1 answer

Create user in Deployd with Phonegap app

How can I create a new user in Deployd with Phonegap app? A POST request on /users in the browser works, but in Phonegap app it returns the error: [phonegap] [console.log] Cannot POST /users
kvdmolen
  • 183
  • 2
  • 13
0
votes
2 answers

Node.js Deployd 404 error on dpd.get & 400 error on dpd.put when using id parameter

Basically what the title says - I've been getting a 404 Not Found on all ids that I enter for "id": dpd.items.get("id", function(results, error) { console.log(results); }); And a 400 Bad Request on any value of…