-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:nursix/eden
- Loading branch information
Showing
74 changed files
with
23,150 additions
and
1,537 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
FROM ubuntu:14.10 | ||
FROM ubuntu:18.04 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && apt-get install -y build-essential unzip curl python-pip python-dev python-matplotlib python-lxml \ | ||
python-numpy python-dateutil python-gdal python-yaml python-serial python-xlwt python-shapely python-pil python-gdal \ | ||
python-reportlab python-reportlab-accel python-tweepy python-xlrd python-pyth python-boto ansible | ||
python-reportlab python-reportlab-accel python-tweepy python-xlrd python-pyth python-boto ansible \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install selenium\>=2.23.0 sunburnt\>=0.6 TwitterSearch\>=1.0 requests\>=2.3.0 | ||
|
||
RUN curl -o web2py.zip https://codeload.github.com/web2py/web2py/zip/R-2.9.11 && unzip web2py.zip && mv web2py-R-2.9.11 /home/web2py && rm web2py.zip | ||
|
||
ADD . /home/web2py/applications/eden | ||
COPY . /home/web2py/applications/eden | ||
|
||
RUN cp /home/web2py/applications/eden/private/templates/000_config.py /home/web2py/applications/eden/models/000_config.py && sed -i 's|EDITING_CONFIG_FILE = False|EDITING_CONFIG_FILE = True|' /home/web2py/applications/eden/models/000_config.py | ||
RUN cp /home/web2py/applications/eden/modules/templates/000_config.py /home/web2py/applications/eden/models/000_config.py && sed -i 's|EDITING_CONFIG_FILE = False|EDITING_CONFIG_FILE = True|' /home/web2py/applications/eden/models/000_config.py | ||
|
||
CMD python /home/web2py/web2py.py -i 0.0.0.0 -p 8000 -a eden |
Empty file.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Organisation,Type,Country,L1,L2,L3,L4 | ||
Cumbria Police,,GB,England,Cumbria,, | ||
Cumbria Police,,GB,England,Cumbria,, | ||
Cumbria County Council,,GB,England,Cumbria,, |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
First Name,Last Name,Email,Password,Role,Organisation,Link | ||
Police,Emergency Room,police@example.com,eden,,Cumbria Police,staff | ||
Cumbria,County Council,ccc@example.com,eden,,Cumbria County Council,staff |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
uid,role,description,controller,function,table,uacl,oacl,entity,Notes | ||
ANONYMOUS,Anonymous,,,,org_organisation,READ,,,Required for 'existing' self-registration | ||
AUTHENTICATED,Authenticated,,gis,,,READ,,, | ||
AUTHENTICATED,Authenticated,,cr,,,CREATE|READ|UPDATE,,, | ||
AUTHENTICATED,Authenticated,,,,cr_shelter,CREATE|READ|UPDATE,,, | ||
AUTHENTICATED,Authenticated,,hrm,person,,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,hrm,human_resource,,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,hrm,staff,,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,,,hrm_human_resource,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,org,organisation,,CREATE|READ,,, | ||
AUTHENTICATED,Authenticated,,,,org_organisation,CREATE|READ,,, | ||
AUTHENTICATED,Authenticated,,,,org_organisation_organisation_type,CREATE|READ,,, | ||
AUTHENTICATED,Authenticated,,pr,contact,,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,pr,contact_emergency,,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,pr,person,,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,,,pr_address,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,,,pr_contact,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,,,pr_contact_emergency,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, | ||
AUTHENTICATED,Authenticated,,,,pr_person,CREATE|READ|UPDATE,READ|UPDATE|DELETE,, |
Oops, something went wrong.