2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

convert to jekyll

This commit is contained in:
Mark Otto
2013-02-12 12:16:32 -08:00
parent 1f5f23f869
commit 5de8557398
236 changed files with 46646 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
* Simple connect server for phantom.js
* Adapted from Modernizr
*/
var connect = require('connect')
, http = require('http')
, fs = require('fs')
, app = connect()
.use(connect.static(__dirname + '/../../'));
http.createServer(app).listen(3000);
fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8')