Jaidev Deshpande

Results 97 comments of Jaidev Deshpande

By default the watcher monitors the subtrees of the following locations: 1. The `$YAMLPATH` corresponding to the current app 2. The `$YAMLPATH` corresponding to Gramex's default `gramex.yaml` 3. the `$YAMLPATH`s...

Viewing Gramex logs in the browser is very important for the IDE (not sure if this is also true for UAT). So switch to rich (or anything else) as long...

@samrudh please see if you can make the necessary changes in [`nlg.search.set_fh_args`](https://github.com/gramener/gramex-nlg/blob/dev/nlg/search.py#L406) to make this work.

This functionality should move to [`numerizer`](github.com/jaidevd/numerizer). Specifically, the `nlg.utils.infer_quant` function (present in the jd-tmpl-interface branch) should use `numerizer.numerize`. This will also mean making numerizer a dependency of NLG. @samrudh can...

Improve docker documentation: After installing docker and pulling the Gramex image, the [guide asks users to](https://learn.gramener.com/guide/install/#docker-install) restart the container by running ``` docker start -ia gramex ``` And in the...

The docs need **one explicit docker command** that shows how to: 1. share folders 2. forward ports 3. and run Gramex through a single call.

This command should be visible in the guide: ```bash docker run -it -p 9988:9988 -v /path/on/host:/path/on/container gramener/gramex:latest /bin/bash ``` with the following comments: 1. `-p` option forwards a port from...

pip install issues: 1. Ideally this should be independent of whether users have Anaconda. The first step in the guide mentions Anaconda. It should not. When doing a pip install,...

On a headless Linux, Capturehandler needs the following system libs, all installable via the respective package manager: 1. libnss3 2. libcups2 3. libxss1 4. libatk1.0-0 5. libatk-bridge2.0-0 6. libpangocairo-1.0-0 7....

On a machine which doesn't have bash, running an app with a `setup.sh` (like Guide) in it fails. Gramex silently ignores `setup.sh`, and moves over to other files like package.json,...