Skip to content
This repository has been archived by the owner on Feb 13, 2022. It is now read-only.

Windows Installation

Florian Dejonckheere edited this page Nov 1, 2017 · 7 revisions

Cygwin

Download Cygwin, install it and then run the setup again from the command line to install all relevant packages:

setup-x86_64.exe -q -P automake,bison,colorgcc,curl,gcc-g++,gcc-core,git,gnupg,libreadline7,libreadline-devel,libtool,libcrypt-devel,libffi-devel,libpq-devel,libiconv-devel,libyaml-devel,libyaml0_2,libsqlite3-devel,make,mingw64-i686-gcc-g++,nano,ncurses,openssh,openssl,openssl-devel,patch,postgres-devel,readline,unzip,zlib,zlib-devel,sqlite3,mingw64-x86_64-gcc,mingw64-x86_64-gcc-core

RVM

Start a Cygwin shell and install RVM:

$ curl https://keybase.io/mpapis/pgp_keys.asc | gpg --import
$ curl -sSL https://get.rvm.io | bash -s stable

Restart your shell and install Ruby:

$ rvm install ruby-2.4.1

Create a gemset:

$ rvm use ruby-2.4.1@webdev --create

Platform

Clone the repository:

$ git clone https://github.com/RailsRoading/wissle.git

Then install all dependencies:

$ # Back-end dependencies
$ gem install bundler --no-ri --no-rdoc
$ bundle install

$ # Front-end dependencies
$ cd web; yarn install
Clone this wiki locally