This is the website component of Exercism. It is Ruby on Rails app, backed by various services.
Please note: This repo is treated as an internal repo. That means the source code is public, but we do not accept Pull Requests, we do not support the app being run locally, and we do not encourage people to fork or reuse this repository.
These are instructions to get things working locally. While you are welcome to try and follow these instructions and set up this repo on your local machine, we provide no guarantee of things working on your specific local setup.
You need the following installed:
- Ruby 3.1.0 (For other Ruby versions, change the version in the
Gemfile
and the.ruby-version
files) - MySQL
- Redis
- AnyCable-Go
- Docker
The main dependencies can be installed via homebrew
brew install libgit2 cmake pkg-config anycable-go hivemind node yarn
What dependencies you need to install depends on your Unix distribution.
For example, for Ubuntu you'll need to install:
sudo apt-get install software-properties-common libmariadb-dev cmake ruby-dev ruby-bundler ruby-railties
You'll also need to install nodejs and yarn.
As we recommend using WSL, see the Unix-specific instructions listed above.
For information on setting up WSL, check the installation instructions.
Running these commands inside a mysql console will get a working database setup:
CREATE USER 'exercism'@'localhost' IDENTIFIED BY 'exercism';
CREATE DATABASE exercism_development;
ALTER DATABASE exercism_development CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES ON exercism_development.* TO 'exercism'@'localhost';
CREATE DATABASE `exercism_test`;
ALTER DATABASE `exercism_test` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES ON `exercism_test`.* TO 'exercism'@'localhost';
To run the app you must have a local version of AWS running. We use localstack and opensearch, and run them via Docker.
docker run -dp 3042:8080 -p 3040:4566 -p 3041:4566 localstack/localstack
docker run -dp 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:1.1.0
The following scripts configure exercism to work with your setup.
bundle install
EXERCISM_ENV=development bundle exec setup_exercism_config
EXERCISM_ENV=development bundle exec setup_exercism_local_aws
Note: you will need to do this every time you reset dynamodb, which happens when Docker is restarted.
We have a Procfile which executes the various commands need to run Exercism locally.
On MacOSX we recommend using hivemind
to manage this, which can be installed via brew install hivemind
.
To get everything started you can then run:
hivemind -p 3020 Procfile.dev
On Unix systems we recommend using overmind
to manage this, which can be installed using these instructions.
To get everything started you can then run:
overmind -p 3020 Procfile.dev
As we recommend using WSL, see the Unix-specific instructions listed above.
For information on setting up WSL, check the installation instructions.
The Rails 7 console has autocomplete that can be very frustrating. To disable it, do the following:
echo 'IRB.conf[:USE_AUTOCOMPLETE] = false' >> ~/.irbrc
Rubocop is enforced on Pull Requests. To run it locally:
bundle exec rubocop --except Metrics
To autoupdate based on it's suggestions, add the -a
flag:
bundle exec rubocop --except Metrics -a
To check the complexity of your code and ensure you're not
adding things that are more complex to the codebase, run without the --except
flag:
bundle exec rubocop -a
The tests can be run using:
bundle exec rails test
If you need to create a new Git repo for use in the tests, use the following:
mkdir /Users/iHiD/Code/exercism/website/test/repos/new-repo
cd /Users/iHiD/Code/exercism/website/test/repos/new-repo
git init --bare
cd ~
git clone file:///Users/iHiD/Code/exercism/website/test/repos/new-repo exercism-new-git-repo
cd exercism-new-git-repo
echo "{}" > config.json
git add config.json
git commit -m "First commit"
git push origin head
Solargraph allows for code suggestions to appear in your editor.
If you'd like to use solargraph, the gem is in the file.
You need to run and set solargraph.useBundler
to true
in your config. I have this working well with coc-solargraph. This article was helpful for setting it up.
bundle exec yard gems
solargraph bundle