combustion icon indicating copy to clipboard operation
combustion copied to clipboard

Document build process

Open Xiretza opened this issue 5 years ago • 1 comments

The only way to use this thing is to unpack release tarballs, how to get one of those from just the source tree is completely undocumented. This makes the software fairly obsolete, since the only one who can create a new usable version is @Secretmapper, and this hasn't happened in over two years.

Xiretza avatar Feb 24 '20 17:02 Xiretza

On linux:

Install NPM :

sudo dnf install npm 

# debian/ubuntu base should be : sudo apt install npm

Install yarn: sudo npm install yarn -g

In combustion folder:

mkdir -p ../combustion-release

# Install dependencies:
yarn

# Execute build script:
./publish.sh

It should build files and move it to combustion-release folder.

pakaoraki avatar Jan 19 '22 17:01 pakaoraki