No description
This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2013-11-06 23:21:54 -05:00
art Add a logo for quay. Make the navbar a little friendlier to smaller devices. 2013-10-13 16:13:50 -04:00
auth Org admins should be able to view all teams. 2013-11-04 16:44:38 -05:00
buildserver Make sure the daemon starts up in the right directory to access the certs file. 2013-10-29 19:59:29 -04:00
certs Fix the stagig unified cert. 2013-10-29 19:32:15 -04:00
data Add some tests to verify we're not leaking anything to completely public users (we're not) 2013-11-06 17:09:22 -05:00
endpoints Make the app config more powerful in terms of injecting fake dependencies. Refactor the tests to use metaclasses and to actually all run. 2013-11-06 23:21:12 -05:00
screenshots Update screenshots.js to remove olark. Regenerate screenshots. 2013-10-22 16:36:26 -04:00
seo-snapshots Add a snapshot for the dynamic signin page. 2013-10-20 01:27:20 -04:00
static Add a quay logo to the stripe checkout process. 2013-11-06 14:55:40 -05:00
storage Make the app config more powerful in terms of injecting fake dependencies. Refactor the tests to use metaclasses and to actually all run. 2013-11-06 23:21:12 -05:00
templates Remove the angular v2.0 theme. 2013-11-05 14:40:58 -05:00
test Check in the new test db with the reader user. 2013-11-06 23:21:54 -05:00
util Add caching to the changes api since it is so expensive and can return large results. 2013-10-20 01:18:31 -04:00
workers Make the app config more powerful in terms of injecting fake dependencies. Refactor the tests to use metaclasses and to actually all run. 2013-11-06 23:21:12 -05:00
.gitignore Remove left over config from running on elastic beanstalk. 2013-10-16 17:52:19 -04:00
app.py Make the app config more powerful in terms of injecting fake dependencies. Refactor the tests to use metaclasses and to actually all run. 2013-11-06 23:21:12 -05:00
application.py Work in progress: Add the UI for the build status and start on the file drop stuff 2013-10-26 16:03:11 -04:00
config.py Make the app config more powerful in terms of injecting fake dependencies. Refactor the tests to use metaclasses and to actually all run. 2013-11-06 23:21:12 -05:00
initdb.py Check in the new test db with the reader user. 2013-11-06 23:21:54 -05:00
nginx.conf Create a unified cert from the quay-staging cert. 2013-10-29 19:14:45 -04:00
README.md Not all hosts may have apt-add-repository. 2013-10-29 18:13:27 -04:00
requirements-nover.txt Add some missing dependencies to for the workers. 2013-10-29 18:14:22 -04:00
requirements.txt Add some missing dependencies to for the workers. 2013-10-29 18:14:22 -04:00

to prepare a new host:

sudo apt-get install software-properties-common
sudo apt-add-repository -y ppa:nginx/stable
sudo apt-get update
sudo apt-get install -y git python-virtualenv python-dev phantomjs 
sudo apt-get install -y nginx-full

check out the code:

git clone https://bitbucket.org/yackob03/quay.git
virtualenv --distribute venv
source venv/bin/activate
pip install -r requirements.txt

running:

sudo nginx -c `pwd`/nginx.conf
STACK=prod gunicorn -D --workers 4 -b unix:/tmp/gunicorn.sock --worker-class eventlet -t 500 application:application

set up the snapshot script: (instructions in the seo-snapshots directory)[seo-snapshots/README.md]

start the workers:

STACK=prod python -m workers.diffsworker -D
STACK=prod python -m workers.dockerfilebuild -D

bouncing the servers:

sudo kill -HUP <pid of nginx>
kill -HUP <pid of gunicorn>

kill <pids of worker daemons>
restart daemons