Skip to content

Commit cc493f9

Browse files
committed
changed requested for #50 approval
1 parent e06955c commit cc493f9

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ or::
109109
110110
$ docker run -e GU_WORKERS=10 -e GU_PORT=8082 -p 8082:8082 -it pywps/gunicorn-alpine:latest
111111

112-
Pywps will be available in the following URL::
112+
Pywps will be available at the following URL::
113113

114114
$ http://localhost:8082
115115

@@ -143,7 +143,7 @@ Flask-Ubuntu (basic)
143143
The same as ``Flask-Ubuntu`` but using phusion image (ubuntu 18.04)::
144144

145145

146-
$ cd docker/ubuntu/flask/Dockerfile
146+
$ cd docker/ubuntu/flask
147147
$ docker build -t pywps/flask-ubuntu:latest .
148148

149149
And to run it::
@@ -157,8 +157,8 @@ Nginx-Ubuntu (production)
157157
This image is based on ``Flask-Ubuntu`` and will require it (either build locally or pull from dockerhub). This image has Nginx and Gunicorn totally integrated as services in a docker image::
158158

159159

160-
$ cd docker/ubuntu/nginx/Dockerfile
161-
$ docker build -t pywps/nginx-ubuntu
160+
$ cd docker/ubuntu/nginx
161+
$ docker build -t pywps/nginx-ubuntu .
162162

163163
And to run it::
164164

processes/grassbuffer.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88

99

1010
class GrassBuffer(Process):
11+
1112
def __init__(self):
1213
inputs = [ComplexInput('poly_in', 'Input1',
1314
supported_formats=[Format('application/gml+xml')],
14-
mode=MODE.STRICT),
15+
mode=MODE.SIMPLE),
1516
LiteralInput('buffer', 'Buffer', data_type='float',
1617
allowed_values=(0, 1, 10, (10, 10, 100), (100, 100, 1000)))]
1718
outputs = [ComplexOutput('buff_out', 'Buffered',

processes/jsonprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self):
1111
self._handler,
1212
identifier='testjson',
1313
title='Process Test',
14-
version='1.0.0.0',
14+
version='1.0.0',
1515
inputs=inputs,
1616
outputs=outputs,
1717
store_supported=True,

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Shapely
99
Werkzeug
1010
SQLAlchemy
1111
psutil
12-
-e git+https://github.com/geopython/pywps[email protected]#egg=pywps-4.2.1
12+
pywps

0 commit comments

Comments
 (0)