Skip to content

ajlende/elm-webgl-presentation

Repository files navigation

WebGL in Elm Presentation

See it live!

Requirements

  1. Elm
  2. node-sass
  3. HTTP Server
  • http-server or
  • live-server or
  • python -m SimpleHTTPServer (Python 2) or python -m http.server (Python 3) will even work

Get MathJax

git submodule init && git submodule update

Build Elm Examples

elm-make examples/*.elm --output elm.js

Build Styles

node-sass scss/styles.scss styles.css

Run Server

A server is needed because the browser's same origin policy prevents loading assets from the filesystem directly. [More info]