This project runs a web server which serves a rendered version of a markdown file.
With docker, you should run
docker run -it -d \
-p <port number>:<port number> \
-e PORT=<port number> \
-v /path/to/markdown.md:/app/web.md \
SophiaH67/markdown-website:latestWithout docker, you should run
git clone https://github.com/SophiaH67/markdown-website.git
cd markdown-website
npm install
node .To edit the content of the website, simply edit web.md (or in docker, whatever file you bound it to)