nitrousio

Nitrous.IO - Installing rspec and it fails to install - An error occurred while installing nokogiri (1.6.0), and Bundler cannot continue

别来无恙 提交于 2019-12-11 05:46:09
问题 Here is the full error message I get Errno::ENOSPC: No space left on device - /home/action/.rvm/gems/ruby-2.0.0-p247/gems/nokogiri-1.6.0/ext/nokogiri/gem_make.out An error occurred while installing nokogiri (1.6.0), and Bundler cannot continue. Make sure that gem install nokogiri -v '1.6.0' succeeds before bundling.> I'm following the Ruby on Rails 3 tutorial and hoping to see what the rspec testing does but Nitrous.IO application doesn't allow me to install it. group :development do gem

Does Nitrous.io allow port 80?

こ雲淡風輕ζ 提交于 2019-12-11 02:58:30
问题 Is it possible to start my webserver/webrick/node.js at standard port 80 on Nitrous.io? A lot of company policies don't allow browsing of non-standard port website. Can I have root access to my virtual machine? 回答1: Nitrous.IO currently has ports 1024 - 9999 open only for HTTP. Root access is not available at this time. You can then access your site via that particular port, or directly on the usual http (port 80) and https ports (port 443). Custom domain support will be available soon for

Geos installation in non-standard location

孤街浪徒 提交于 2019-12-08 07:15:29
I'm running on nitrous.io and trying to install the rgeo gem using ruby 2.0.0-p353. I don't have sudo access, so I tried to compile and install geos from source. Once I downloaded and untarred the source files, I cd into the source folder and run mkdir /home/action/local && ./configure --prefix=/home/action/local make && make install This runs for a bit. I then run gem install rgeo -- --with-geos-dir=/home/action/local Things look alright, but if I hop into a terminal I get RGeo::Geos.supported? > false Looking back over the mkmf.log file, I see these lines: /usr/bin/ld: cannot find -lgeos

How to sync the local folder with the Git Repository on NitrousIO

不想你离开。 提交于 2019-12-08 04:37:22
问题 First - I've created the git repository and also created the local repo of the same on my local system. Second - Worked on my local system and did some changes and pushed the changes on to the Git repository such that my local system source and git repository are in sync now Now, Instead of working on my local system, I wanted to work on NitrousIO. Hence created the folder same as my git repository name and did 'git .init' as well. Basically this is the Ruby on Rails application, hence

Custom base_site.html not working in Django

五迷三道 提交于 2019-12-07 03:03:51
问题 I am using Nitrous for playing with the Django framework. In tutorial 2 is shown how to change the base_site.html template. I've added in the TEMPLATE_DIRS = ( ) a new line: 'home/action/workspace/mysite/templates', And in base_site.html I changed the site name title of Django Administration into Administration: {% trans 'Administration' %} But I still see no changes on the website. I've tried different TEMPLATE_DIRS like: '~/workspace/mysite/templates', 'home/action/workspace/mysite/', 'home

Get error node.js mongodb cannot read property 0 of null for records after successfull insert

拟墨画扇 提交于 2019-12-06 16:30:01
I used db.collection.insert method to add a document in mongodb with function(err,records) callback. Though insertion succeeds (I checked on mongolab the record), records is null so that It throws error at records[0]._id Is it a node.js bug on nitrous.io which I'm testing ? MongoClient.connect(uri, function (err, db) { if (err) { throw err; } else { console.log("successfully connected to the database"); // Insert document in MongoDb Collection var document = {title:'test',category:'node.js'} db.collection('tut').insert(document, function(err,records){ //if (err) throw err; console.log(

How to sync the local folder with the Git Repository on NitrousIO

左心房为你撑大大i 提交于 2019-12-06 15:58:37
First - I've created the git repository and also created the local repo of the same on my local system. Second - Worked on my local system and did some changes and pushed the changes on to the Git repository such that my local system source and git repository are in sync now Now, Instead of working on my local system, I wanted to work on NitrousIO. Hence created the folder same as my git repository name and did 'git .init' as well. Basically this is the Ruby on Rails application, hence followed 'rails new RKsJobs_Board' to set up the folder and then git .init What I need is: As the remote git

HTTPS (TLS/SSL) server on Nitrous.IO

依然范特西╮ 提交于 2019-12-06 06:03:16
May I ask how to create TLS server on Nitrous.IO Boxes? I think what I have to get for that at least are cert.pem and key.pem or something like that. Depending on what region you are in, you can get SSL authentication automatically. Will that suffice? http://help.nitrous.io/ssl/ For me, https works out of the box. I set my server to listen on port 3000, configured the Nitrous preview port to 3000, and then I can get access via: http://silly-name-121212.nitrousapp.com:3000/ http://silly-name-121212.nitrousapp.com/ https://silly-name-121212.nitrousapp.com/ (This URL is just for illustration;

Copy pasting does not work in nitrous webIDE?

*爱你&永不变心* 提交于 2019-12-05 13:25:01
问题 I cannot paste code into the webIDE console. copy pasting works all around the IDE except the console. Is there a way to fix this? please help, its so annoying! 回答1: If you're on Windows you'll need to hit Control + Shift + V to paste in the console on the Nitrous.IO Web IDE. 回答2: The added support was mentioned on their changelog. In a nutshell: cmd+c and cmd+v support for copy and paste in mac ctrl+shift+v support to paste in chrome, paste using menu bar in firefox (Edit => Paste) 回答3:

Robomongo connection with Meteor mongodb

て烟熏妆下的殇ゞ 提交于 2019-12-05 08:20:26
I have connected my localhost mongodb from robomongo but having problem in connecting Meteor mongodb. I am running Meteor from nitrousio not on localhost. In robomongo connection settings, it is showing "Connected to 'meteor_url:3001'. Authorization failed". I am using correct db in Authentication tab and nothing in username and password. Is this the root cause? If yes, what is the default username and pwd of mongodb? If no, then what should i do? I set the Robomongo (v 0.8.4) connection to use localhost (127.0.0.1) and port 3001. Everything else is empty/default. I am using Windows 7 btw. I