These prerequisites assume you're working on a 64-bit Windows 10
operating system machine
For further information regarding system requirements, head over to the Microsoft Docs or Microsoft's blog on extending WSL 2 Support.
To check your Windows version, press Win Logo key
+ R
, type winver
, then click OK.
There are other ways to get Forem running on lower versions, but we recommend a complete WSL 2 installation.
Since Forem's codebase is using the Ruby on Rails framework, we will need to install the Windows Subsystem for Linux (WSL). Some dependencies used by the source code triggered errors when installing on Windows, so using WSL allows you to work on the software and not having to fix gem incompatibilities.
Follow the instructions for Installing the Windows Subsystem for Linux. Once you've installed WSL, complete all the instructions under the following sections in the link above:
Once all the steps mentioned above are completed, install Ubuntu 18.04 on Windows.
On your first run, the system will ask for username and password. Take note of both since it will be used for sudo
commands. More information about the process can be found at create a user account and password for your new Linux distribution
rbenv
is a version manager for Ruby applications which allows one to guarantee that the Ruby version in development environment matches production. First, install Ruby language dependencies before installing rbenv
:
1 2
sudo apt-get update sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev
Now, we install rbenv using the following commands:
1 2 3 4 5 6 7 8 9
cd git clone https://github.com/rbenv/rbenv.git ~/.rbenv echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc echo 'eval "$(rbenv init -)"' >> ~/.bashrc exec $SHELL git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc exec $SHELL
One can verify rbenv
installation using the rbenv-doctor
script with the following commands:
1
curl -fsSL https://raw.githubusercontent.com/rbenv/rbenv-installer/main/bin/rbenv-doctor | bash
As a pre-requisite to install Rails, Node.js needs to be installed. nvm is a Node.js version manager that helps a developer select a specific Node.js version for development.
To install nvm
, follow the instructions outlined in the official nvm documentation.
Be sure to reload the shell with the command exec $SHELL
after the installation is complete.
Run the following command to verify that nvm
is installed:
1
command -v nvm
If the shell outputs nvm
, the installation is successful. Installation of the correct Node.js version will be done in a later part of the installation process.
The fastest way to install Yarn for WSL would be from Debian package repository. Configure the repository with the following commands:
1 2
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
Since we do not have Node.js installed yet, we will be installing Yarn without the default Node.js with the following command:
1
sudo apt update && sudo apt install --no-install-recommends yarn
To verify Yarn's installation, run the command yarn -v
. It should print Yarn requires Node.js 4.0 or higher to be installed.
. This indicates that the Yarn installation succeeded but Node.js still needs to be installed for it to work fully. We install Node.js later on in the installation process.
Forem requires PostgreSQL version 11 or higher. To Install PostgreSQL on WSL, follow steps under the PostgreSQL APT Repository section.
Once Installed, perform the following steps in order to set up a username and password for PostgreSQL:
sudo -i service postgresql start
to start the server.Next, replace $YOUR_USERNAME
in the following commands with your Linux Username and execute them:
1 2 3
sudo -u postgres createuser -s $YOUR_USERNAME createdb sudo -u $YOUR_USERNAME psql
\password
to set a password for your PostgreSQL user.\quit
.For additional configuration options, check our PostgreSQL setup guide.
Forem uses ImageMagick to manipulate images on upload.
ImageMagick can be installed to WSL via installing its imagemagick package with the following command:
1
sudo apt update && sudo apt install imagemagick
To verify its installation, run identify -version
command.
Forem requires Redis version 6.0 or higher.
We recommend to follow this guide to run Redis under WSL.
git clone https://github.com/<your-username>/forem.git
Open the cloned forem folder in terminal with cd forem
. Next, install Ruby with the following commands:
1 2 3
rbenv install $(cat .ruby-version) rbenv global $(cat .ruby-version) ruby -v
Install Node.js with the following set of commands:
1 2 3 4
nvm install $(cat .nvmrc) nvm use $(cat .nvmrc) node -v yarn -v
gem install bundler
Set up your environment variables/secrets
.env_sample
. This file lists all the ENV
variables we use and provides a fake default for any missing keys.APP_DOMAIN
variable to the remote computer's domain name.For any key that you wish to enter/replace:
.env
by copying from the provided template (ie. with bash: cp .env_sample .env
). This is a personal file that is ignored in git.1 2
export GITHUB_KEY="SOME_REAL_SECURE_KEY_HERE" export GITHUB_SECRET="ANOTHER_REAL_SECURE_KEY_HERE"
You do not need "real" keys for basic development. Some features require certain keys, so you may be able to add them as you go.
After ensuring that the PostgreSQL server and the Redis server are running, run bin/setup
.
The
bin/setup
script is responsible for installing a varienty of dependencies. One can find it inside thebin
folder by the name ofsetup
.
- Its first task is to install the
bundler
gem. Next, it will makebundler
install all the gems, includingRails
, located inGemfile
in the root of the repository. It also installsforeman
.- It then installs JavaScript dependencies using the script in
bin/yarn
file. These dependencies are located inpackage.json
in the root of the repository.- Next, it uses various Rake files located inside the
lib
folder for the PostgreSQL database creation and updation.- Finally it cleans up all the log files and restarts the Puma server.
There is a possibility that you might encounter a statement timeout when seeding the database for the first time. Please increase the value of statement_timeout
to 9999999
in config/database.yml
.
If the installation process failed with the following error ERROR: Error installing pg
. Please consider installing the following package libpq-dev
:
1
sudo apt-get install libpq-dev
bin/setup
fails at installing cld-0.8.0
with the warnings 'aclocal-1.10' is missing on your system
and 'automake-1.10' is missing on your system
. Please install automake-1.10
using the commands below.1 2 3 4 5 6 7 8
cd sudo apt-get update sudo apt-get install autoconf wget https://ftp.gnu.org/gnu/automake/automake-1.10.tar.gz tar xf automake-1.10.tar.gz cd automake-1.10/ ./configure --prefix=/usr/local make
In WSL2, hostname/IP address are no longer shared between Windows and Linux. There are currently two work-arounds.
Use dockerized selenium, ie docker-selenium. You will need docker for the following steps
docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.141.59-20200409
CH=$(docker run --rm --name=ch --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.141.59-20200409)
export SELENIUM_URL="http://localhost:4444/wd/hub"
to your .env
Port forward with socats
(more info needed).
If you encountered any errors that you subsequently resolved, please consider updating this section with your errors and their solutions.
In order to run Cypress Test Runner, a few extra setup steps are required to run GUIs natively inside of WSL2.
This guide explains how to use graphical user interfaces like Cypress inside WSL2.