Installing Juggernaut on Windows - ruby-on-rails-3

I'm developing a chatroom app in Rails and have read that Juggernaut is the best option. Has anyone seen a tutorial for getting it started on Windows? I can't seem to find any up-to-date tutorials online.

I don't use Windows so I haven't tried to but take a look at https://github.com/dmajkic/redis for running Redis in Windows and https://github.com/joyent/node/wiki/Building-node.js-on-Cygwin-(Windows) for installing Node.js.
Those are Juggernaut's only real dependencies.

Related

RShiny, shinymanager, RSQLite, Heroku deployment

My app is working perfectly on my Desktop, but I forgot that heroku does not play well with SQLite.
So when I am building the app I am getting an error when it is installing shinymanager as this library needs the RSQLite library to be installed and this RSQLite library cannot be installed for the reason above.
Can anyone help me ?
If you are using heroku-buildpack-r, then the issue is between this buildpack and shinymanager. See this thread about it:
https://github.com/virtualstaticvoid/heroku-buildpack-r/issues/142
One solution mentioned here is to use a replacement buildpack, namely, heroku-docker-r

Should I install tools inside WSL 2 or on Windows?

I have searched alot on Google, but cannot seem to find any guidelines or definitive answers.
The closest I got was an article stating that I should generate my ssh keys from within WSL and use that ssh key on Windows aswell, which makes sense.
But what about other tools?
I.e. yarn, flutter, nodejs/npm, .net etc?
I found that installing yarn from chocolatey, also allowed me to use yarn within my WSL Ubuntu shell.
However, the same was not true for nodejs nor flutter.
For flutter specifically I found this open issue:
https://github.com/flutter/flutter/issues/41742
But perhaps someone can shed some light on what the "best practice" are for installing tools/software using WSL?

How to instll Siesta Lite on windows 8

We are implementing a project where we need to develop applications in sencha touch and as a tester i will be responsible to test these applications. After some research, I found out that Bryntum's Siesta is the best tool to automate the Manual test cases.
Before we decide to get the license, i just wanted to goof around it a bit so I downloaded the Lite version but I am not able to figure out how to install it on my Windows 8 machine. There isn't any .exe file in the downloaded folder when i extracted it.
Can anyone help me out with this please!
Thanks Already!
There is nothing to install really, since Siesta is just a web based tool (pure HTML, JS and CSS). Just extract into a web server and visit /examples and it will work. Getting started guide here: http://www.bryntum.com/docs/siesta/#!/guide/siesta_getting_started

Distributing TideSDK application

I recently finished an application based on Titanium, Javascript, HTML, CSS. I have only been a web designer to date so I have little experience in distributing applications. I was accustomed to the TiDev Community deploying app, which prepared the app for download and made it available for download at a given link.
But tidev community is no longer supported, so I use TideSDK Developer to package the app, which doesnt do all the hard work the other one did so nicely.
I am obviously a complete rookie to this.
Could anyone outline the steps I would need to take to go from the bundled application folder I have now (put together by TideSDK Developer), to a link that will allow customers to download and install the app or online? I know there is an issue with packaoging the app for platforms other than your own, and that appcelerator is working on a solution to this I think. I also realise I would probably have to pay to host the download online. Any guidance would be greatly appreciated.
You must use the tidebuilder.py script. to compile a installation package. To compile a binary for a Mac, you must run the script on a Mac, to compile a binary for windows, you must be on a windows box etc.
There is some documentation on how to use it here per platform. The command is very simple and works.
Once you have your application file (DMG for OSX or a MSI for Windows) then just distribute it however you see fit, email, putting it on your web server, whatever works for you.

Ubuntu Server 64bit 11.04: setting up as "Ruby on Rails" server with SQLite3

I have looked so long for nice tutorials, but still couldn't find any for Ubuntu 11.04. I wan't to set it up to learn by this book: http://ruby.railstutorial.org/ruby-on-rails-tutorial-book
The tutorials I found are not quite up to date and also doesn't aren't for 11.04 Ubuntu.
I am asking for quick tutorial, what's the best way to set up RoR server.
Also if you know any other great Ruby on Rails tutorials, as the link I wrote above, please don't hold back and definitely share the link to it.
Ty in advance!
PS! I already messed up one of my Virtual Machines, but luckily I had made snapshot of clean install.
Ubuntu has Rails packages already. It should be as simple as doing apt-get install rails-ruby1.8, which'll install Ruby as a dependency as well.
Ryan Bigg has a very nice tutorial called Ubuntu, Ruby, RVM, Rails and You. Since you're configuring a server you will probably have a look at some tips about deployment & best practices written by the creator of RVM himself.
I'm sure you have it done already though since it's an old question, but I the links will be of use to someone else.