Skip to content

SERG-Delft/ai4fintech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2f8fc52 · Mar 5, 2025
Dec 20, 2024
Dec 20, 2024
Mar 5, 2025
Apr 6, 2020
Jan 13, 2020
Jan 13, 2020
Mar 5, 2025
Jan 13, 2020
May 11, 2020
Dec 20, 2024
Jun 2, 2021
Dec 20, 2024
Dec 20, 2024
Apr 22, 2021
Dec 20, 2024
Dec 20, 2024
Apr 6, 2020
Mar 12, 2020
Mar 28, 2022
Oct 1, 2023
Jan 7, 2024
Dec 20, 2024
Jan 15, 2024
Oct 3, 2023
Sep 30, 2023

Repository files navigation

The AFR website

The AFR web site is built with Jekyll and is running on GitHub pages.

Building locally

There are two options to build the website locally:

  • Installing and running Jekyll
  • Running Jekyll from a Docker container

Installing and running Jekyll

Jekyll requires Ruby (>=2.3). If you have Ruby installed (most recent Linuxes and Macs do have a correct version of Ruby), you can use the following commands to build the web site:

# Install dependencies
gem install bundler
bundle install

# Build the web site

bundle exec jekyll build --config _config.yml,_config_local.yml

# Run jekyll with Docker (recommended)

docker build -t afr-site . docker run -p 4000:4000 -v $(pwd):/myapp -it afr-site