Đỗ Trường Giang

Results 70 comments of Đỗ Trường Giang

The method is here https://github.com/Avaiga/taipy/blob/8379661f1380a7722f1643b1252f62df55b5df8d/taipy/core/taipy.py#L648

Since each sub taipy folder is still a standalone package, I think it's a good practice to have its own "CODE_OF_CONDUCT.md", even if it's duplicated, we never change it anyway....

I don't like the term `--blueprint` here because it can be confusing for the user along side the `--template` term. They seem similar to me. I propose use something more...

@imkrishnasarathi have you give the new Rest CLI options a test?

The main file you need is [the small application with both GUI and Rest](https://docs.taipy.io/en/latest/userman/run-deploy/run/running_services/#running-all-taipy-services-gui-orchestrator-and-rest) or any other application with the GUI and Rest service

You can test if your modification works or not by the following step: - Create a new environment - Installing Taipy from your branch `imkrishnasarathi:feature/rest-config-and-https` (follow [this thread if you...

The Rest service is not running in your test though

From the image you sent, the Rest server is running on port 5000

I can not see your whole `main.py`, but from what I can see, I'm guessing you are handling the ports for Rest and GUI on the `main.py` itself. Hopefully that...

On SQLrepo, `_delete_by()` method can be: ```python def _delete_by(self, attribute: str, value: str): self.db.query(self.model_type).filter_by(**{attribute: value}).delete() ``` Probably something similar on MongoRepo