Skip to content
Snippets Groups Projects
Makefile 314 B
Newer Older
  • Learn to ignore specific revisions
  • Greg0ire's avatar
    Greg0ire committed
    NODE=docker run -it --workdir=/srv --rm --user=$(shell id -u) -v $(PWD):/srv
    LOCAL_PORT=8000
    node_modules: yarn.lock package.json
    	$(NODE) node yarn install
    
    start_the_show: node_modules
    	$(NODE) -p $(LOCAL_PORT):8000 --name sflive node /bin/sh -c 'node_modules/reveal-md/bin/cli.js --port 8000 --theme=solarized'