Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szabgab/rust.code-maven.com
Rust version of the Code Maven web site
https://github.com/szabgab/rust.code-maven.com
rust rust-lang web
Last synced: 3 months ago
JSON representation
Rust version of the Code Maven web site
- Host: GitHub
- URL: https://github.com/szabgab/rust.code-maven.com
- Owner: szabgab
- Created: 2023-08-27T10:19:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-24T21:13:45.000Z (4 months ago)
- Last Synced: 2024-10-24T21:17:59.876Z (4 months ago)
- Topics: rust, rust-lang, web
- Language: Rust
- Homepage: http://rust.code-maven.com/
- Size: 3.81 MB
- Stars: 13
- Watchers: 3
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Authors: authors/szabgab.md
Awesome Lists containing this project
README
# [Rust Maven](https://rust.code-maven.com/)
This repostory contains the source of all the articles and all the examples of the [Rust Maven](https://rust.code-maven.com/) web site.
It now also includes all the slides in the `slides` folder.
Feel free to use any of the examples under the MIT OR Apache-2.0 license.
## Generate the site
Download `code-maven` from https://ssg.code-maven.com/
Run
```
code-maven web
```It will generate the site in the `_site` folder.
## In order to generate the slides
* Clone slider-py
```
ln -s ../slider-py
``````
cd slidesln -s ../../slides/templates
ln -s ../../slides/static/
ln -s ../../slides/generate_slides.py
cd ..
``````
./generate_slides.py
```## View site locally
Install [rustatic](https://rustatic.code-maven.com/)
and after generating the static pages with the previously described command, run
```
rustatic --host localhost --port 5000 --indexfile index.html --nice --path _site/
```## Clean up all the target folders
find -name target | xargs rm -rf