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
from django.contrib.admin.util import NestedObjects | |
from django.db import DEFAULT_DB_ALIAS | |
from django.core import serializers | |
# flatten function | |
def flatten(xs): | |
result = [] | |
if isinstance(xs, (list, tuple)): |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
pip install django-haystack==2.3.1 | |
pip install git+https://github.com/notanumber/xapian-haystack.git | |
# Check and correct /lib/python2.7/site-packages/xapian_backend.py L64 for python 2.6 | |
apt-get install uuid-dev | |
apt-get install zlib1g-dev | |
apt-get install g++ | |
export VENV=$VIRTUAL_ENV |