Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does Cloud 9 support any databases? Can my app talk to a database? MongoDB, Sqlite... anything? If so, how do i set it up? I am willing to work with any database. I just want to persist some of my info into a database.

share|improve this question

3 Answers

up vote 10 down vote accepted

Yes Cloud9 supports all databases that node.js has support for. However, because Cloud9 doesn't do hosting you'll have this to be handled by a 3rd party. For instance, create a MongoDB database instance at MongoHQ (free plan available), and then use node-mongodb-native to communicate with the instance.

edit On premium plans it's now possible to install 3rd party databases, for installing postgres see this article: Building Wordpress sites in the cloud

share|improve this answer
Cool. Will check it out. – mithun_daa Nov 30 '11 at 21:19

Cloud9 now allows you to run MongoDB from within Cloud9. Here are instructions on how to set it up in your workspace:

https://docs.c9.io/setting_up_mongodb.html

share|improve this answer

I'm using Cloud 9, and there's a local mongod on the slice. You need to use a terminal to run it.

share|improve this answer
1  
+1 if you can give us a little more detail on how to use through the C9 terminal. Even if its simple, a little more meat in the answer would be nice =) – Tyrsius Jan 15 at 21:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.