new file: api.pyc new file: conf/fabric.yml new file: fabfile.py new file: fabfile.pyc new file: modules/__init__.py new file: modules/__init__.pyc new file: modules/conf_setup.py new file: modules/conf_setup.pyc new file: modules/configuration_setup.py new file: modules/database.py new file: modules/database.pyc new file: modules/deploy.py new file: modules/deploy.pyc new file: modules/django.py new file: modules/django.pyc new file: modules/docker.py new file: modules/docker.pyc new file: modules/initialize.py new file: modules/initialize.pyc new file: modules/maintenance.py new file: modules/maintenance.pyc new file: modules/nginx.py new file: modules/nginx.pyc new file: modules/pip.py new file: modules/pip.pyc new file: modules/setup.pyc new file: modules/supervisor.py new file: modules/supervisor.pyc new file: modules/testing/__init__.py new file: modules/testing/__init__.pyc new file: modules/testing/configuration_setup.py new file: modules/testing/maintenance.pyc new file: modules/utils.py new file: modules/utils.pyc new file: templates/conf/database/files/db.drop_all.sql.jinja2 new file: templates/conf/database/files/db.drop_db.sql.jinja2 new file: templates/conf/database/files/db.init.sql.jinja2 new file: templates/conf/database/files/db.re_init.sql.jinja2 new file: templates/conf/django/files/gunicorn.jinja2 new file: templates/conf/django/files/gunicorn.unixsocket.jinja2 new file: templates/conf/django/files/local.jinja2 new file: templates/conf/django/files/settings.jinja2 new file: templates/conf/django/files/settings18.jinja2 new file: templates/conf/django/files/wsgi.jinja2 new file: templates/conf/django/files/wsgi.py new file: templates/conf/docker/files/database.jinja2 new file: templates/conf/gunicorn/files/gunicorn.jinja2 new file: templates/conf/gunicorn/files/gunicorn.unixsocket.jinja2 new file: templates/conf/gunicorn/files/local.jinja2 new file: templates/conf/gunicorn/files/settings.jinja2 new file: templates/conf/gunicorn/files/settings18.jinja2 new file: templates/conf/gunicorn/files/wsgi.jinja2 new file: templates/conf/gunicorn/files/wsgi.py new file: templates/conf/nginx/files/default.conf.jinja2 new file: templates/conf/nginx/files/unixsocket.jinja2 new file: templates/conf/supervisor/files/conf_old new file: templates/conf/supervisor/files/supervisor.jinja2 new file: templates/meta/development.yml new file: templates/meta/layout.yml new file: templates/meta/staging.yml new file: templates/readmes/aws.md new file: templates/readmes/gandi.md new file: templates/readmes/reset_migrations.md new file: templates/readmes/setup_gandi.md new file: templates/readmes/translations.md new file: templates/readmes/update_images.md
54 lines
1.2 KiB
Markdown
54 lines
1.2 KiB
Markdown
* set up using docker
|
|
|
|
## setup the /var/www directory
|
|
|
|
cd /var
|
|
sudo mkdir www
|
|
sudo chgrp www-data www -R
|
|
sudo chmod g+w www -R
|
|
|
|
## install python packages
|
|
|
|
sudo apt-get install python-dev
|
|
sudo apt-get install libjpeg-dev
|
|
|
|
## install supervisor
|
|
sudo apt-get install supervisor
|
|
|
|
make sure www-data is a group for *user*
|
|
|
|
modify /etc/supervisor/supervisord.conf
|
|
|
|
add the following:
|
|
|
|
[unix_http_server]
|
|
file=/var/run//supervisor.sock ; (the path to the socket file)
|
|
chmod=0770 ; sockef file mode (default 0700)
|
|
chown=nobody:www-data
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///var/run//supervisor.sock ; use a unix:// URL for a unix socket
|
|
chmod=0770
|
|
chown=nobody:www-data
|
|
|
|
#### run the following commands:
|
|
|
|
sudo service supervisor stop
|
|
sudo service supervisor start
|
|
|
|
## install postgres
|
|
|
|
sudo apt-get install postgresql postgresql-contrib
|
|
sudo apt-get install postgresql-server-dev-X.Y
|
|
sudo apt-get install postgresql-server-dev-9.1
|
|
|
|
## install pip and virtualenv
|
|
|
|
http://roundhere.net/journal/virtualenv-ubuntu-12-10/
|
|
|
|
sudo apt-get install python-pip
|
|
sudo pip install virtualenv
|
|
sudo pip install virtualenvwrapper
|
|
|
|
1. setup scripts/meta/configuration/branch.yml
|
|
1. setup scripts/meta/virtualenv/branch.txt
|