https://github.com/fluxml/fluxml.github.io
Flux Website
https://github.com/fluxml/fluxml.github.io
deep-learning flux hacktoberfest julia machine-learning
Last synced: 12 months ago
JSON representation
Flux Website
- Host: GitHub
- URL: https://github.com/fluxml/fluxml.github.io
- Owner: FluxML
- License: mit
- Created: 2017-10-06T13:29:11.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-03-23T11:07:44.000Z (about 2 years ago)
- Last Synced: 2025-04-05T11:23:24.430Z (about 1 year ago)
- Topics: deep-learning, flux, hacktoberfest, julia, machine-learning
- Language: HTML
- Homepage: https://fluxml.ai
- Size: 88.7 MB
- Stars: 20
- Watchers: 8
- Forks: 44
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Governance: governance.md
Awesome Lists containing this project
README
This repository contains the source files for the [FluxML website, fluxml.ai](https://fluxml.ai). FluxML is a machine learning framework for [Julia](https://julialang.org).
## Contributing
Want to contribute to the FluxML website? Check out the contributing guide: https://github.com/FluxML/fluxml.github.io/blob/main/CONTRIBUTING.md
## Running Locally
The website is built with [Franklin.jl](https://franklinjl.org).
First, install Julia then setup your environment.
```
julia --project=.
julia> ]
(fluxml.github.io) pkg> instantiate
```
This will install the necessary packages. It only needs to be done once.
Now, start Julia and serve the page:
```
julia --project=.
julia> using Franklin
julia> serve()
```
This will start a live server that previews the website. You can make edits to the markdown files and see the website update as you save. Please refer to the [Franklin.jl documentation](https://franklinjl.org) for more information on developing a website with Franklin.jl.
### Project structure
Most pages of the website are written as markdown files in the root directory. The `blogposts` directory contains blog posts, and the `tutorialposts` directory contains tutorials.