This is an automated email from the ASF dual-hosted git repository. klesh pushed a commit to branch kw-4752-rename-compose-file in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git
commit c24c936ce8e37b6017d3bd1727b0179d83260b12 Author: Klesh Wong <[email protected]> AuthorDate: Tue May 16 14:53:53 2023 +0800 chore: rename docker-compose.yml to avoid misusage --- docs/DeveloperManuals/DeveloperSetup.md | 2 +- docs/DeveloperManuals/E2E-Test-Guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/DeveloperManuals/DeveloperSetup.md b/docs/DeveloperManuals/DeveloperSetup.md index b228880a1a..cd89830c5f 100644 --- a/docs/DeveloperManuals/DeveloperSetup.md +++ b/docs/DeveloperManuals/DeveloperSetup.md @@ -54,7 +54,7 @@ The following guide will walk through how to run DevLake's frontend (`config-ui` > Make sure the Docker daemon is running before this step. ```sh - docker-compose up -d mysql grafana + docker-compose -f docker-compose-dev.yml up -d mysql grafana ``` 7. Run `devlake` and `config-ui` in dev mode in two separate terminals: diff --git a/docs/DeveloperManuals/E2E-Test-Guide.md b/docs/DeveloperManuals/E2E-Test-Guide.md index 1156e4cd24..e844d5fbb1 100644 --- a/docs/DeveloperManuals/E2E-Test-Guide.md +++ b/docs/DeveloperManuals/E2E-Test-Guide.md @@ -67,7 +67,7 @@ After exporting, move the .csv file to `plugins/feishu/e2e/raw_tables/_raw_feish ### MySQL Select Into Outfile -This is MySQL's solution for exporting query results to a file. The MySQL currently started in docker-compose.yml comes with the --security parameter, so it does not allow `select ... into outfile`. The first step is to turn off the security parameter, which is done roughly as follows. +This is MySQL's solution for exporting query results to a file. The MySQL currently started in docker-compose-dev.yml comes with the --security parameter, so it does not allow `select ... into outfile`. The first step is to turn off the security parameter, which is done roughly as follows.  After closing it, use `select ... into outfile` to export the csv file. The export result is rough as follows. 
