This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Service side git pre-receive hook | |
# Written by Gautier Pelloux-Prayer <[email protected]>, 2014 | |
# | |
# Public domain | |
# | |
# Simply put this script in server git bare repository <your-git-folder>/hooks and | |
# apply 'chmod +x pre-receive'. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import time | |
from flask import Flask | |
from PyQt4 import QtCore, QtGui, QtWebKit | |
import gevent.wsgi |