Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 634 Bytes

File metadata and controls

24 lines (19 loc) · 634 Bytes

High Performance Computing in Julia

This is the main site for documentation about he High Performance Computing in Julia MPAGS module. The link to the site can be found here.

Locally running the website

Make sure you have julia installed on your system and open up a terminal in this directory:

julia

Then run the following in the REPL:

using Pkg;
Pkg.activate(".");
Pkg.instantiate();

This only needs to be done once. After you can run the project locally with

using Franklin
serve()

This will open up the live server.