Remove files which are no longer used.

This commit is contained in:
jakedt 2014-04-11 13:33:05 -04:00
parent 576fbe4f0d
commit 808026dc00
3 changed files with 0 additions and 72 deletions

View file

@ -1,54 +0,0 @@
APScheduler==2.1.2
Flask==0.10.1
Flask-Login==0.2.10
Flask-Mail==0.9.0
Flask-Principal==0.4.0
Flask-RESTful==0.2.12
Jinja2==2.7.2
Mako==0.9.1
MarkupSafe==0.19
Pillow==2.4.0
PyGithub==1.24.1
PyMySQL==0.6.1
SQLAlchemy==0.9.4
Werkzeug==0.9.4
alembic==0.6.4
aniso8601==0.82
argparse==1.2.1
beautifulsoup4==4.3.2
blinker==1.3
boto==2.27.0
distribute==0.7.3
git+https://github.com/DevTable/docker-py.git
ecdsa==0.11
gevent==1.0
greenlet==0.4.2
gunicorn==18.0
hiredis==0.1.2
html5lib==1.0b3
itsdangerous==0.24
jsonschema==2.3.0
lockfile==0.9.1
logstash-formatter==0.5.8
loremipsum==1.0.2
marisa-trie==0.6
mixpanel-py==3.1.2
mock==1.0.1
git+https://github.com/NateFerrero/oauth2lib.git
paramiko==1.13.0
peewee==2.2.2
py-bcrypt==0.4
pyPdf==1.13
pycrypto==2.6.1
python-daemon==1.6
python-dateutil==2.2
python-digitalocean==0.7
pytz==2014.2
redis==2.9.1
reportlab==2.7
requests==2.2.1
six==1.6.1
stripe==1.14.0
websocket-client==0.11.0
wsgiref==0.1.2
xhtml2pdf==0.0.5

18
run.sh
View file

@ -1,18 +0,0 @@
#! /bin/bash
if [ -f conf/stack/ssl.key ]
then
echo "Using HTTPS"
/usr/local/nginx/sbin/nginx -c /conf/nginx-enterprise.conf
else
echo "No SSL key provided, using HTTP"
/usr/local/nginx/sbin/nginx -c /conf/nginx-enterprise-nossl.conf
fi
venv/bin/gunicorn -c conf/gunicorn_config.py application:application
while true
do
sleep 60
echo "Running"
done