https://github.com/biojulia/biojulia.github.io
BioJulia's Website
https://github.com/biojulia/biojulia.github.io
bioinformatics biology julia
Last synced: 11 months ago
JSON representation
BioJulia's Website
- Host: GitHub
- URL: https://github.com/biojulia/biojulia.github.io
- Owner: BioJulia
- Created: 2015-11-22T13:05:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-01-06T16:40:47.000Z (over 1 year ago)
- Last Synced: 2025-06-16T17:42:20.735Z (12 months ago)
- Topics: bioinformatics, biology, julia
- Language: HTML
- Homepage: https://biojulia.dev
- Size: 4.12 MB
- Stars: 7
- Watchers: 3
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BioJulia.dev
[](https://biojulia.dev)
## Development
### Building the site
The project devcontainer can be used. Check out [Get started with development Containers in Visual Studio Code](https://code.visualstudio.com/docs/devcontainers/tutorial) if you're not familar with devcontainers.
Otherwise you can quickly build the site with the following commands:
```julia
julia> using Pkg; Pkg.instantiate(); Pkg.precompile();
julia> using Xranklin; Xranklin.serve();
```
The LiveServer will begin listening on http://localhost:8000/ !
### CSS
Any changes to the CSS should be made to the SCSS files in `_sass/` and compiled using `Sass.jl` as follows:
```julia
Sass.compile_file("style.scss", "../_css/celeste.min.css"; output_style = Sass.compressed)
```
All the `Franklin.jl` related changes are in `_sass/adjust.scss`
## Static Site Tech
Using [Xranklin](https://github.com/tlienart/Xranklin.jl) under the hood.
### Celeste Template
Based on the wonderful [Celeste](https://github.com/nicoelayda/celeste) by @nicoelayda.