Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 848 Bytes

website.md

File metadata and controls

32 lines (21 loc) · 848 Bytes

Website

The contents of this repository can also be viewed using a website with easier navigation. The website is built using docsify.

Running locally with docker

You need to have docker installed for your platform.

  1. From the root of this repository, build the docker image:
docker build . -t exercism-website-base:v1
  1. Launch a container with the appropriate configuration:
docker run -it --rm --name exercism-website -p 3005:3005 -v "$PWD":/opt/exercism-docsify exercism-website-base:v1

Running locally with a node.js toolchain

To run the website on your local machine, open a command prompt in the root directory of this repository and run:

npm i docsify-cli -g
docsify serve -p 3005 .