Skip to content

ieee-vgtc/ieeevis.org

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ieeevis.org

Hi! This is the Jekyll version of the IEEE VIS website.

The vis2025 branch (the page you're currently viewing) is the current year's website.

To edit files in other years, check out the other vis* branches. Click the below links to teleport:

Contributing

If you're contributing content, but not administrating the website itself, you will want to follow the contributor's guide.

Building

Automatic building: The .github/workflows/staging.yml file contains a GitHub Actions workflow for deploying the site.

To build locally The website uses both Node.js and Ruby. To install Node and npm, follow the instructions on the Node Website. To install Ruby and bundle,

  • If you are running a UNIX-like system (including MacOS), we recommend installing rbenv
  • If you are using Windows, you can install Ruby using WSL

Once Node and Ruby are installed, run their respective package managers to install the dependencies

npm install
bundle

Then build the site

npm run build

Now you can run the site locally by running

bundle exec jekyll serve -d ./_site -b '/' && npm run-script start

You may need to break these commands apart and run these two commands in separate consoles

bundle exec jekyll serve -d ./_site -b '/'
npm run-script start