Skip to content

Commit 58280a2

Browse files
committed
Merge branch 'pydat4-dev'
2 parents bdb9506 + c82f6bb commit 58280a2

File tree

149 files changed

+65367
-34125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+65367
-34125
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pydat/pydat/custom_settings.py
22
*.pyc
33
*.swp
4+
*.vscode

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM httpd:2.4
22

33
MAINTAINER mitrecnd, http://github.com/mitrecnd
44

5-
ENV WSGI_VERSION="4.4.13" PATH=$PATH:/opt/WhoDat/pydat/scripts
5+
ENV WSGI_VERSION="4.6.4" PATH=$PATH:/opt/WhoDat/pydat/scripts
66

77
COPY . /opt/WhoDat/
88
ADD https://bootstrap.pypa.io/get-pip.py /tmp/
@@ -21,7 +21,7 @@ RUN \
2121
apt-get install -y python python-dev $buildDeps && \
2222
/tmp/get-pip.py && \
2323
rm /tmp/get-pip.py && \
24-
pip install -r /opt/WhoDat/docker/requirements.txt && \
24+
pip install -r /opt/WhoDat/requirements.es5.txt && \
2525
cd /tmp/ && \
2626
tar -zxf ${WSGI_VERSION}.tar.gz && \
2727
rm ${WSGI_VERSION}.tar.gz && \

README.md

+247-208
Large diffs are not rendered by default.

docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Note that you will still need to create and pass in a custom_setings.py configur
4343
Image Organization
4444
------------------
4545

46-
This image is based on Apache's httpd image with all required dependencies to use pyDat with MongoDB or ElasticSearch.
46+
This image is based on Apache's httpd image with all required dependencies to use pyDat with ElasticSearch.
4747

48-
The repo has been installed into /opt/WhoDat but a soft link has been created at /pydat which points to /opt/WhoDat/pydat/pydat to make it easier to add a custom_settings file.
48+
The repo has been installed into /opt/WhoDat but a soft link has been created at /pydat which points to /opt/WhoDat/pydat/pydat to make it easier to add a custom_settings file.
4949

5050
The PATH has also been modified to include the scripts directory allowing you to directly execute the populate scripts from the command line:
5151

docker/apache.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ LoadModule status_module modules/mod_status.so
2222
LoadModule autoindex_module modules/mod_autoindex.so
2323
LoadModule dir_module modules/mod_dir.so
2424
LoadModule alias_module modules/mod_alias.so
25+
LoadModule mpm_event_module modules/mod_mpm_event.so
2526

2627
<IfModule unixd_module>
2728
User daemon
@@ -196,7 +197,7 @@ WSGIScriptAlias "/" "/opt/WhoDat/pydat/pydat/wsgi.py" process-group=pydat applic
196197
</Directory>
197198

198199
# Static content - CSS, Javascript, images, etc.
199-
Alias /static/ /opt/WhoDat/pydat/pydat/static/
200+
Alias /static/ /opt/WhoDat/pydat/extras/www/static/
200201
<Directory /opt/WhoDat/pydat/extras/www/static>
201202
Order allow,deny
202203
Allow from all

docker/requirements.txt

-7
This file was deleted.

0 commit comments

Comments
 (0)