Skip to content

A static site generator (markdown to html) built using python.

Notifications You must be signed in to change notification settings

GaryLouisStewart/static-site-generator

Repository files navigation

Static site generator

a markdown to html static website generator, bundled with a simple web-server that allows us to publish the content.


Requirements

  • python3
  • docker/podman (optional)

running using python.

Running this with python.

python3 src/main.py
cd public && python3 -m http.server 8888

running the test suite

python3 -m unittest discover -s src -vvv

# or you can use the ./test.sh script which uses the same command wrapped in a bash script..

./test.sh

run using docker or podman

docker build -t static-site-generator .
docker run -p 8888:8888 static-site-generator


# or using podman

podman build -t static-site-generator . 
podman run -p 8888:8888 static-site-generator

About

A static site generator (markdown to html) built using python.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages