We used gulp automated sytem in our template. Here following the details about Gulp Configuration.

How to add new script or remove script from minified css/js file?

We used a minified file to make the template faster and optimized. That file proceed by Gulp. So open the gulpfile.js and then you will find the following code there

    var CSS_Files = [	
	'./assets/css/bootstrap.min.css',
	'./assets/css/font-awesome.min.css',
	'./assets/css/slimmenu.min.css',
	'./assets/css/animate.min.css',
	'./assets/css/dark-theme.css',
	'./assets/css/owl.carousel.min.css',
	'./assets/css/rating.css'	 
    ];
    var JS_Files = [
	'./assets/js/jquery-3.3.1.min.js',
	'./assets/js/simple-jekyll-search.min.js',
	'./assets/js/jquery.slimmenu.min.js',
	'./assets/js/popper.min.js',
	'./assets/js/bootstrap.min.js',
	'./assets/js/owl.carousel.min.js',
	'./assets/js/wow.min.js',
	'./assets/js/rating.js',
	'./assets/js/parallax.min.js',
	'./assets/js/app.js'	
    ];

You can add or removed your script from there as your need.

And then use the command gulp in your command prompt area.

How to change the CSS / SCSS

That is very easy in our template. Just open the scss file what you want to change and then use the command gulp in your command prompt area. It will automatically update the app.min.css file

Here following a video tutorial about Doxy Jekyll theme installation and customization help :

If you still need help to setup Doxy Jekyll theme then feel free contact us