ACE3/docs
2024-01-02 18:50:29 -03:00
..
_includes Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
_layouts Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
_posts replace urls (#8875) 2022-04-14 09:22:23 +02:00
dist Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
img Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
js Documentation - Improve and move to a modern build system, Fix search not working (#9574) 2023-10-24 11:53:42 +02:00
src Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
tools Tools - Check example funcs in document_functions.py (#9630) 2023-11-08 12:00:05 -06:00
wiki Captives - Add listenable event handler for escorting (#9709) 2024-01-02 18:50:29 -03:00
_config_dev.yml Prep 3.16.1 Build 74 2023-10-25 14:07:14 -05:00
_config.yml Prep 3.16.1 Build 74 2023-10-25 14:07:14 -05:00
.dockerignore
.editorconfig
.gitattributes
.gitignore Use function documentation script (#6897) 2023-04-30 23:03:35 +02:00
404.md
acebot.json replace urls (#8875) 2022-04-14 09:22:23 +02:00
CNAME
docker-compose.yml
Dockerfile
entrypoint.sh
favicon-32.png
favicon.png
Gemfile
google38c2ed88459ce9b8.html
googlebd2887f5a38652f2.html
humans.txt
index.html Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
manifest.json Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
news.md Documentation - Improve svg handling (#9575) 2023-10-24 14:04:58 +02:00
README_DE.md Documentation - Remove badge and link to CircleCI (#9433) 2023-09-25 18:02:54 +02:00
README_PL.md Documentation - Remove badge and link to CircleCI (#9433) 2023-09-25 18:02:54 +02:00
README.md replace urls (#8875) 2022-04-14 09:22:23 +02:00
README.zh-TW.md Documentation - Remove badge and link to CircleCI (#9433) 2023-09-25 18:02:54 +02:00
robots.txt
sitemap.xml
team.md Documentation - Add johnb432 to maintainers (#9604) 2023-10-28 20:49:26 +00:00
version.md

Source of https://ace3.acemod.org/

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