Last active
October 28, 2022 19:22
-
-
Save erictleung/74d40ece9f6232603a0839c616ae03cd to your computer and use it in GitHub Desktop.
Setup Exercism in Replit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Follow instructions here for more: | |
# https://exercism.io/cli-walkthrough | |
# Releases: | |
# https://github.com/exercism/cli/releases | |
# Download and move around | |
# Change URL as needed for new versions | |
wget https://github.com/exercism/cli/releases/download/v3.1.0/exercism-3.1.0-linux-x86_64.tar.gz | |
mkdir bin | |
mv exercism bin/ | |
# Check things worked | |
./bin/exercism | |
# Add your token from here https://exercism.org/settings | |
./bin/exercism configure --token=ADD_TOKEN_HERE | |
# Example of getting exercises for the Scala language | |
./bin/exercism download --exercise=hello-world --track=scala |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment