Installation - Thewessen/tic-tac-toe_ruby_backend GitHub Wiki

Installing both the front-end (Emberjs) and the backend (Ruby on Rails) went very smooth so far.

Ruby on Rails can be found in the apt-get repository, and is the latest version (!). Quite unique, considering most of the packages found in apt-get are outdated.

Ruby itself comes preinstalled, and is the latest version as whell! Awesome.

Minor issues

After initiallizing an empty Ruby on Rails project, I had some minor issues installing sqlite3: 'sqlite3.h could not be found'. This was easily fixed after installing the necessary libsqlite3-dev. (I had sqlite3 itself already installed).

After pushing the initial Emberjs project to Github, Github warned me about a moderate security vulnerability on clean-css. Although I did not (yet) inteded to use broccoli (the requiring package), I don't like vulnerabilities either. I made a quick fix by requiring clean-css myself, with some later version, in the package.json. Hopefully this doesn't break the broccoli package. Otherwise roll back.