Acetate is a page generating framework for static websites. It is built to be easy to integrate into existing build processes and tools, easy to extend, and developer friendly.
Acetate is generally intended to be used with a build system like Grunt, Gulp, or NPM scripts. There are several sample repositories showing how to do this:
- Grunt - Coming soon
- Gulp - Coming soon
- Command-line/NPM scripts
It's also easy to get started with Acetate or integrate Acetate into an existing project:
- Install the Acetate CLI:
npm install acetate-cli -g
- Create a new Node JS project:
npm init
- Install Acetate in your project
npm install acetate --save-dev
- Create a folder to hold the source of your site and create an
index.md
file.mkdir src && echo 'Hello Acetate.' > src/index.md
- Start the local server:
acetate server --open
Please run npm test
locally before you submit a PR. This will run the tests and check for semistandard style and lint with the ESLint recommended rules.
More details in the contributing guide.