terasakisatoshi / MathSeminar.jl

Topics in several mathematics using Julialang
https://terasakisatoshi.github.io/MathSeminar.jl/
13 stars 2 forks source link
franklin julia

Gitpod ready-to-code

Build and Deploy

MathSeminar.jl

How to build my page

Case1: using Julia

$ julia --project=@.
julia> using Pkg; Pkg.instantiate()
julia> using Franklin; serve()

Case2: using Docker container

  1. Install Docker and Docker Compose
  2. Run the following command:
$ make build
$ make web

which is almost same as

$ docker-compose build
$ docker-compose run --rm julia julia -e 'using Pkg; Pkg.instantiate()'
$ docker-compose up web