2022-04-14 07:22:23 +00:00
# Source of https://ace3.acemod.org/
2016-08-18 16:37:38 +00:00
2016-10-16 08:48:14 +00:00
## Updating compiled JavaScript and CSS files
2016-08-18 16:37:38 +00:00
2016-10-16 08:48:14 +00:00
- Install [Node.js ](https://nodejs.org/download/ )
- 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 ](https://www.docker.com/ ) 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 ](https://www.docker.com/ )
- cd into the `/docs/` directory
- Open Command Prompt and navigate to this directory
```
cd < ACE3_directory > /docs
```
2016-08-18 16:37:38 +00:00
2016-10-16 08:48:14 +00:00
- Build and run the container
```
docker-compose up
```
- Navigate to [http://localhost:4000 ](http://localhost:4000 )
### Manually
#### Installing prerequisites
##### Windows (CMD)
2016-08-18 16:37:38 +00:00
2016-08-18 18:45:39 +00:00
- Install [Ruby 2.0.0-p648 (x64) ](http://rubyinstaller.org/downloads/ )
- Install [Ruby DevKit for 2.0 (x64) ](http://rubyinstaller.org/downloads/ )
- Open Command Prompt and navigate to this directory
```
cd < ACE3_directory > /docs
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- Install `bundler` gem
```
gem install bundler
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- Install required gems through `bundler`
```
bundle install
```
2016-08-18 16:37:38 +00:00
2016-10-16 08:48:14 +00:00
2016-08-18 18:45:39 +00:00
#### Debian / Bash on Ubuntu on Windows
2016-08-18 16:37:38 +00:00
2016-08-18 18:45:39 +00:00
- Open Bash and navigate to this directory
```
cd < ACE3_directory > /docs
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- Install `make` and `gcc`
```
2016-10-11 12:18:58 +00:00
sudo apt-get install make gcc
2016-08-18 18:45:39 +00:00
```
2016-09-04 22:26:20 +00:00
2016-10-14 05:55:46 +00:00
- Install `ruby2.0` , `ruby2.0-dev` and `ruby-switch`
2016-08-18 18:45:39 +00:00
```
sudo apt-add-repository ppa:brightbox/ruby-ng
2016-10-11 12:21:54 +00:00
sudo apt-get update
sudo apt-get install ruby2.0 ruby2.0-dev ruby-switch
2016-08-18 18:45:39 +00:00
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- Set Ruby version
```
sudo ruby-switch --set ruby2.0
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- Install `bundler`
```
sudo gem install bundler
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- Install required gems through bundler
```
bundle install
```
2016-09-04 22:26:20 +00:00
2016-08-18 18:45:39 +00:00
- In case of sticky folder error during `bundle install` , execute the following to fix permissions
```
find ~/.bundle/cache -type d -exec chmod 0755 {} +
```
2016-10-16 08:48:14 +00:00
#### Running
2016-08-18 18:45:39 +00:00
- 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