Malhar Vora
Malhar Vora
If it is just about removal of Dockerfile then I can address this issue as I don't have much understanding of project and so it would be a good start...
> docker exec -ti $CONTAINER_NAME psql -U $DB_USER -c "SELECT verification_token FROM users WHERE email='[email protected]';" Tried command `$ sudo docker exec -ti $CONTAINER_NAME psql -U vbmade2000 -c "SELECT verification_token FROM...
Tried comment from #269 and it worked. Thanks.
Currently the repo is blank. Is there a plant to start it soon ?
Ok. Thanks for reply.
@dpn I'll check your solution. Thanks.
@preytaren Can you point to that part of doc ?
The **wiki** link itself doesn't exist. Also I checked but couldn't find **GzipFilter** in official documentation too.
I tried following code but didn't get exception. ``` from bottle import route, run, request import copy @route('/') def index(): d = copy.deepcopy(request.query) return "Hello World" run(host='localhost', port=8080) ```