Meet Rajesh Gor

Results 7 comments of Meet Rajesh Gor

There is a requirement for the `DJANGO_SETTINGS_MODULE` environment variable. Just set the environment variable to the settings file as a python module - Linux ```bash export DJANGO_SETTINGS_MODULE=label_studio.settings ``` - Windows...

I have read the CLA Document and I hereby sign the CLA

Sure, but is it fine to keep the method as `GET`(using query params), or conversion to `POST`(using body) is needed?

You need to add `on_delete = models.CASCADE` instead of `models.DO_NOTHING` while using the Foreign Key field attribute. The object will get deleted once the related object is deleted.

How about using the `Environment` class to load the templates for parsing the available base template? ```python # plugins/feeds.py from jinja2 import Environment, FileSystemLoader with open(template) as f: env =...

Cool, so we can provide a config by selecting a template for a particular page(title). If there is a templates folder provided for that type of page, it will be...

Could this be done by adding a new flag? Example like a `--query-cmds` flag followed by a list of strings/commands ``` turso db shell my-db --query-cmds ".mode csv" ".head on"...