-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdjango-deploy.sh
75 lines (47 loc) · 2.4 KB
/
django-deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
## Deploying a Python Django project
## Initial setup
apt-get update
apt-get install -y python-pip apache2 libapache2-mod-wsgi python-virtualenv libmysqlclient-dev
## Creating empty project directory on apache root
export PROJECTPATH="/var/www/"
# prompt for name of file or directory
echo -n "Enter project name: "
# read the name
read PROJECTNAME
# Check if directory already exists
if [ -d "$PROJECTPATH""$PROJECTNAME" ]; then
echo "Project exists in the root directory. Aborting..";
exit 0;
fi
# create empty directory on project path
mkdir -p -- "$PROJECTPATH""$PROJECTNAME"
echo "$PROJECTNAME created."
## Place the project files as a compressed file in
## the home directory to run the following commands
# uncompressing the project files to $PROJECTNAME
tar -xzvf "$PROJECTNAME".tar.gz -C "$PROJECTPATH"
## creating virtual environment
virtualenv "$PROJECTPATH""$PROJECTNAME"/"$PROJECTNAME"
## activating virtual environment
source "$PROJECTPATH""$PROJECTNAME"/"$PROJECTNAME"/bin/activate
##installing python requirements inside virtual environment
pip install -r "$PROJECTPATH""$PROJECTNAME"/requirements.txt
## to install without breaking
cat "$PROJECTPATH""$PROJECTNAME"/requirements.txt | while read PACKAGE; do pip install "$PACKAGE"; done
## deactivating virtual environment
deactivate
## Apache configuration
echo "<VirtualHost *:80>" > /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo "ServerAdmin webmaster@localhost" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo " DocumentRoot "$PROJECTPATH""$PROJECTNAME"" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo " WSGIDaemonProcess "$PROJECTNAME" python-path="$PROJECTPATH""$PROJECTNAME":"$PROJECTPATH""$PROJECTNAME"/"$PROJECTNAME"/lib/python2.7/site-packages" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo " WSGIProcessGroup "$PROJECTNAME"" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo " WSGIScriptAlias / "$PROJECTPATH""$PROJECTNAME"/"$PROJECTNAME"/wsgi.py" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo " ErrorLog ${APACHE_LOG_DIR}/error.log" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo " CustomLog ${APACHE_LOG_DIR}/access.log combined" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
echo "</VirtualHost>" >> /etc/apache2/sites-enabled/"$PROJECTNAME".conf
## Remove default configuration file
mv /etc/apache2/sites-enabled/000-default.conf ~
## Restart apache
service apache2 restart