-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Converting to a static site should be a simple as a couple of shell commands
mkdir -p 'dist/'
curl 'localhost:3000' > 'dist/index.html'
curl 'localhost:3000/js/config.js' > 'dist/config.js'
curl 'localhost:3000/js/app.js' > 'dist/app.js'
curl 'localhost:3000/js/get.js' > 'dist/get.js'
curl 'localhost:3000/js/jsbinify.js' > 'dist/jsbinify.js'
curl 'localhost:3000/js/notebook.js' > 'dist/notebook.js'
mkdir -p dist/css
curl 'localhost:3000/css/style.css' > 'dist/css/style.css'
cp **/*.md > dist
Reactions are currently unavailable