Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T05:06:01.000Z (3 months ago)
- Last Synced: 2024-12-29T18:03:04.893Z (10 days ago)
- Topics: code, franklin, gallery, geo, julia, julia-language, julialang, makie, plotting, programming, visualization
- Homepage: https://beautiful.makie.org
- Size: 292 MB
- Stars: 376
- Watchers: 9
- Forks: 27
- Open Issues: 5
-
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
```