Hi,
I am a developer, I want to make my own changes, and deploy these changes as production mode.
I want to build release version from source code, like this (https://rocket.chat/download)
But I don't know how to do this, anybody help?
Thank you,
Since this is a meteor app, you should be able to build it with meteor build
see here.
cd /your/dev/dir
meteor build --server https://demo.rocket.chat --directory /your/build/location
There is also example-build.sh
script with some initial setup. Modify it to match you dir structure.
@mbanusic thanks, I will try tonight.
Most helpful comment
Since this is a meteor app, you should be able to build it with
meteor build
see here.There is also
example-build.sh
script with some initial setup. Modify it to match you dir structure.