From ea412105d0d5ae72acd506b01c335230b4d9d387 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Sun, 23 Oct 2011 21:15:23 -0400 Subject: [PATCH] Moving local server stuff back --- gs | 3 --- debug_wsgi.py => snipt/debug_wsgi.py | 0 gk => snipt/gk | 0 snipt/gs | 3 +++ gunicorn.conf.py => snipt/gunicorn.conf.py | 0 monitor.py => snipt/monitor.py | 0 6 files changed, 3 insertions(+), 3 deletions(-) delete mode 100755 gs rename debug_wsgi.py => snipt/debug_wsgi.py (100%) rename gk => snipt/gk (100%) create mode 100755 snipt/gs rename gunicorn.conf.py => snipt/gunicorn.conf.py (100%) rename monitor.py => snipt/monitor.py (100%) diff --git a/gs b/gs deleted file mode 100755 index 86eed04..0000000 --- a/gs +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -gunicorn_django snipt/settings.py -c gunicorn.conf.py debug_wsgi:application diff --git a/debug_wsgi.py b/snipt/debug_wsgi.py similarity index 100% rename from debug_wsgi.py rename to snipt/debug_wsgi.py diff --git a/gk b/snipt/gk similarity index 100% rename from gk rename to snipt/gk diff --git a/snipt/gs b/snipt/gs new file mode 100755 index 0000000..b270570 --- /dev/null +++ b/snipt/gs @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +gunicorn -c gunicorn.conf.py debug_wsgi:application diff --git a/gunicorn.conf.py b/snipt/gunicorn.conf.py similarity index 100% rename from gunicorn.conf.py rename to snipt/gunicorn.conf.py diff --git a/monitor.py b/snipt/monitor.py similarity index 100% rename from monitor.py rename to snipt/monitor.py