You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by yu...@apache.org on 2022/09/02 14:21:34 UTC

[incubator-devlake-website] branch main updated: docs: add compiling doc

This is an automated email from the ASF dual-hosted git repository.

yumeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 2e1df8c6 docs: add compiling doc
2e1df8c6 is described below

commit 2e1df8c6eba581dd8f61b976405b899534f728ff
Author: Klesh Wong <zh...@merico.dev>
AuthorDate: Fri Sep 2 22:11:47 2022 +0800

    docs: add compiling doc
---
 docs/DeveloperManuals/DeveloperSetup.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/DeveloperManuals/DeveloperSetup.md b/docs/DeveloperManuals/DeveloperSetup.md
index ef7ffa2a..6ccce244 100644
--- a/docs/DeveloperManuals/DeveloperSetup.md
+++ b/docs/DeveloperManuals/DeveloperSetup.md
@@ -129,3 +129,9 @@ MySQL and Grafana containers.
 
 12. For DB migrations, please refer to [Migration Doc](../DeveloperManuals/DBMigration.md).
 
+13. Compiling
+
+    - Compile all plugins: `make build-plugin`
+    - Compile specific plugins: `PLUGIN=<PLUGIN_NAME> make build-plugin`
+    - Compile server: `make build`
+    - Compile worker: `make build-worker`