https://github.com/makieorg/beautifulmakie
Web page with basic examples showing how to use makie in julia
https://github.com/makieorg/beautifulmakie
code franklin gallery geo julia julia-language julialang makie plotting programming visualization
Last synced: 14 days ago
JSON representation
Web page with basic examples showing how to use makie in julia
- Host: GitHub
- URL: https://github.com/makieorg/beautifulmakie
- Owner: MakieOrg
- License: mit
- Created: 2021-06-07T10:41:56.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-14T00:04:26.000Z (about 1 month ago)
- Last Synced: 2025-04-08T12:05:49.308Z (14 days ago)
- Topics: code, franklin, gallery, geo, julia, julia-language, julialang, makie, plotting, programming, visualization
- Homepage: https://beautiful.makie.org
- Size: 365 MB
- Stars: 378
- Watchers: 8
- Forks: 29
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Beautiful Makie
[beautiful.makie.org](https://beautiful.makie.org)
Web page with basic examples showing how to use makie in julia.
Some guidance on how to dev this locally:
```shell
npm install -D vitest
```
or
```shell
npm i
```
if a package*.json file is provided. Also you will need vitepress```shell
npm add -D vitepress
```## Generating files
> For this you should have [julia](https://julialang.org/downloads/) installed in your computer.Then `cd` into the `docs` folder and `activate` and `instantiate` the `env` there:
```julia
julia>]
```
```julia
pkg> activate .
```
```julia
pkg> instantiate
```
then do```julia
julia> include("gen_mds.jl")
```
and
```julia
julia> include("make.jl")
```
these step will generate all files needed in order to build the site, you could serve/build/preview it by doing```shell
BeautifualMakie $ npm run docs:dev
``````shell
BeautifualMakie $ npm run docs:build
```
and```shell
BeautifualMakie $ npm run docs:preview
```