mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 01:26:57 +03:00
Merge
This commit is contained in:
commit
7897e0f48f
|
@ -3,6 +3,12 @@
|
|||
WORK_DIR="$(dirname "$0")"
|
||||
OS_REQUIREMENTS_FILENAME="$WORK_DIR/requirements.apt"
|
||||
|
||||
VER=$(lsb_release -sr)
|
||||
if [ "$VER" == "16.04" ]; then
|
||||
OS_REQUIREMENTS_FILENAME="requirements.apt.xenial"
|
||||
else
|
||||
OS_REQUIREMENTS_FILENAME="requirements.apt"
|
||||
fi
|
||||
# Handle call with wrong command
|
||||
function wrong_command()
|
||||
{
|
||||
|
@ -80,4 +86,3 @@ case "$1" in
|
|||
help) usage_message;;
|
||||
*) wrong_command $1;;
|
||||
esac
|
||||
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
##basic build dependencies of various Django apps for Ubuntu 14.04
|
||||
#build-essential metapackage install: make, gcc, g++,
|
||||
build-essential
|
||||
#required to translate
|
||||
gettext
|
||||
python-dev
|
||||
|
||||
##shared dependencies of:
|
||||
##Pillow, pylibmc
|
||||
zlib1g-dev
|
||||
|
||||
##Postgresql and psycopg2 dependencies
|
||||
libpq-dev
|
||||
|
||||
##Pillow dependencies
|
||||
libtiff5-dev
|
||||
libjpeg8-dev
|
||||
libfreetype6-dev
|
||||
liblcms2-dev
|
||||
libwebp-dev
|
||||
|
||||
|
||||
##django-extensions
|
||||
graphviz-dev
|
||||
|
||||
##hitch
|
||||
python-setuptools
|
||||
python3-dev
|
||||
python-virtualenv
|
||||
python-pip
|
||||
firefox
|
||||
automake
|
||||
libtool
|
||||
libreadline6
|
||||
libreadline6-dev
|
||||
libreadline-dev
|
||||
libsqlite3-dev
|
||||
libxml2
|
||||
libxml2-dev
|
||||
libssl-dev
|
||||
libbz2-dev
|
||||
wget
|
||||
curl
|
||||
llvm
|
Loading…
Reference in New Issue
Block a user