LinkinStars commented on issue #1493: URL: https://github.com/apache/answer/issues/1493#issuecomment-3852362109
> Should I follow these steps first: https://github.com/apache/answer?tab=readme-ov-file#build > > And then using that binary execute `./answer build ....` to build the binary with plugins @brocaar Yes. Your steps are correct. The ANSWER_MODULE environment variable must be set. ```bash make ui make build export ANSWER_MODULE="$PWD" ./answer build \ --output ./new_answer \ --with github.com/apache/answer-plugins/cache-redis@latest \ --with github.com/apache/answer-plugins/connector-github@latest \ --with github.com/apache/answer-plugins/connector-google@latest \ --with github.com/apache/answer-plugins/quick-links@latest \ --with github.com/apache/answer-plugins/render-markdown-codehighlight@latest \ --with github.com/apache/answer-plugins/reviewer-basic@latest \ --with github.com/apache/answer-plugins/storage-s3@latest ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
