ACID

A supersonic static-site generator written in Rust.

GitHub CI

ABOUT

I've been an avid user of the Jekyll CMS for many years now and have used this CMS to build all of my websites with. However, I recently discovered that Ruby is on a downward trend in the developer community, and since I was also looking to improve my Rust skills, I wondered how one would write a blog using Rust. This is when I realized that there aren't many options. Acid is another option. Acid* works quite similarly to Jekyll but is a bit more bare-bones at this point. (This may change.) Enjoy. :)

LINKS

BUILDING

Tools

You will need the following tools installed and available:

Steps

INSTALLATION

Requirements

You will need the Rust toolchain and Git installed and available from the command line. Once that is done, you can install Acid with the following commands. These commands will work on all platforms.

bash $ cargo install --git https://github.com/iamtheblackunicorn/acid.git

bash $ cargo install acid-rs

USAGE

Command Line usage

bash $ acid build yourprojectdir

yourprojectdir represents the path of your project.

bash $ acid clean yourprojectdir This will delete the build directory with your compiled project inside your project directory called yourprojectdir.

Creating a new project.

Creating a new Acid site entails the following steps. Acid is very modular, allowing YOU to extend your site as you see fit. There are some basic steps, however. These are the steps you need to take to create a new Acid site. My recommendation is that you have a look at the site directory in this repository.


layout:blog title:ACID.RS


`` -layout: This YAML field tells ***Acid*** which layout to build yourindex.htmlfrom. -title: This YAML field tells ***Acid*** the page title. - Further fields: You can fill your Markdown files with as many fields as you like. All fields will be available via the{{ page.field }}variable in your templates, wherefield` is a placeholder for any other field you might have.

Deployment to GitHub Pages.

If you have a GitHub account, you can upload your project to a repository, create a new branch called gh-pages, create a new file called rust.yml at .github/workflows in your repository, fill it with the code below, and voilá: You can now view your project on the web under the URL of yourusername.github.io/yourporject.

YAML on: [push] name: Acid Project CI jobs: build_and_test: name: Acid Project CI runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: toolchain: stable - uses: actions-rs/cargo@v1 with: command: build args: --release - uses: actions-rs/cargo@v1 with: command: run args: build . - name: Deploy uses: JamesIves/github-pages-deploy-action@v4.2.5 with: branch: gh-pages folder: build

CONTRIBUTING

If you have some suggestions for improvement or you want to contribute, either file an issue or fork the repository. If you want to do the latter, make and test your changes, and file a Pull Request.

CHANGELOG

Version 1.0.0

NOTE