ACE3/docs
2019-07-17 00:02:12 +02:00
..
_includes [Docs] Update component dependencies 2019-07-12 17:06:23 +02:00
_layouts
_posts
css
img
js Upgrade grunt versions used for building docs static assets 2018-04-26 20:31:27 +02:00
src Bump lodash from 4.17.11 to 4.17.13 in /docs/src (#7097) 2019-07-11 10:16:56 -05:00
tools Add public function documentation script (#5253) 2019-03-23 23:21:33 +01:00
wiki Missing return line in coding guide lines for SETPVAR (#7106) 2019-07-17 00:02:12 +02:00
_config_dev.yml Update wiki config.yml version numbers 2019-03-14 09:31:19 -05:00
_config.yml Update wiki config.yml version numbers 2019-03-14 09:31:19 -05:00
.dockerignore
.editorconfig
.gitattributes force lf endings for docker entrypoint file (#6614) 2018-10-05 06:58:56 +02:00
.gitignore
404.html
acebot.json
CNAME
docker-compose.yml run npm audit fix for docs (#6755) 2019-01-02 00:05:28 +01:00
Dockerfile run npm audit fix for docs (#6755) 2019-01-02 00:05:28 +01:00
entrypoint.sh run npm audit fix for docs (#6755) 2019-01-02 00:05:28 +01:00
favicon-32.png
favicon.png
Gemfile
google38c2ed88459ce9b8.html
googlebd2887f5a38652f2.html
humans.txt
index.html
manifest.json
news.html
package-lock.json
README_DE.md Prep 3.12.4 Build 37 2018-11-18 23:57:54 -06:00
README_PL.md Prep 3.12.4 Build 37 2018-11-18 23:57:54 -06:00
README.md
robots.txt
sitemap.xml
team.md Add mharis001 to ACE3 maintainers list 2019-03-09 16:44:29 +01:00
version.html

Source of https://ace3mod.com/

Updating compiled JavaScript and CSS files

  • Install Node.js

  • Open Command Prompt and navigate to src directory

    cd <ACE3_directory>/docs/src
    
  • Install Node packages

    npm install
    

    On Bash on Ubuntu on Windows also install nodejs-legacy in case of errors.

  • Update files

    grunt
    

Setting up the Jekyll environment

Using Docker

We include files for Docker to run Jekyll in a separate container. This allows you to not having to install anything apart from Docker on your computer.

Running the Dockerfile

  • Install Docker

  • cd into the /docs/ directory

  • Open Command Prompt and navigate to this directory

    cd <ACE3_directory>/docs
    
  • Build and run the container

    docker-compose up
    
  • Navigate to http://localhost:4000

Manually

Installing prerequisites

Windows (CMD)
  • Install Ruby 2.0.0-p648 (x64)

  • Install Ruby DevKit for 2.0 (x64)

  • Open Command Prompt and navigate to this directory

    cd <ACE3_directory>/docs
    
  • Install bundler gem

    gem install bundler
    
  • Install required gems through bundler

    bundle install
    

Debian / Bash on Ubuntu on Windows

  • Open Bash and navigate to this directory

    cd <ACE3_directory>/docs
    
  • Install make and gcc

    sudo apt-get install make gcc
    
  • Install ruby2.0, ruby2.0-dev and ruby-switch

    sudo apt-add-repository ppa:brightbox/ruby-ng
    sudo apt-get update
    sudo apt-get install ruby2.0 ruby2.0-dev ruby-switch
    
  • Set Ruby version

    sudo ruby-switch --set ruby2.0
    
  • Install bundler

    sudo gem install bundler
    
  • Install required gems through bundler

    bundle install
    
  • In case of sticky folder error during bundle install, execute the following to fix permissions

    find ~/.bundle/cache -type d -exec chmod 0755 {} +
    

Running

  • Run Jekyll through bundler

    bundle exec jekyll serve --future --incremental --config _config_dev.yml
    

    Use --force_polling on Bash on Ubuntu on Windows due to a bug preventing watching.

  • Navigate to http://localhost:4000