https://github.com/alchemycms/alchemy-guides
📜️ Source of the AlchemyCMS guidelines
https://github.com/alchemycms/alchemy-guides
Last synced: 8 months ago
JSON representation
📜️ Source of the AlchemyCMS guidelines
- Host: GitHub
- URL: https://github.com/alchemycms/alchemy-guides
- Owner: AlchemyCMS
- Created: 2011-04-07T10:37:37.000Z (about 15 years ago)
- Default Branch: main
- Last Pushed: 2025-02-07T11:01:02.000Z (over 1 year ago)
- Last Synced: 2025-02-07T12:19:11.151Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://guides.alchemy-cms.com
- Size: 4.17 MB
- Stars: 19
- Watchers: 10
- Forks: 47
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://app.netlify.com/sites/alchemy-guides/deploys)
# The AlchemyCMS Guides
The guides are created with [VitePress](https://vitepress.dev/) and are written in [Markdown](https://daringfireball.net/projects/markdown/syntax).
[](https://www.netlify.com)
## File locations
The actual guides sourcefiles live in the `/guides` folder.
## Preview the guides
Run
```bash
bun install
```
to install [VitePress](https://vitepress.dev/).
To run a local preview server, run
```bash
bun run guides:preview
```
The server will be available at [http://localhost:8080](http://localhost:8080).
## Building
Build the guides html files with:
```bash
bun run guides:build
```
## Deployment
Deployment is done automatically via [netlify](https://www.netlify.com) whenever a change is merged into the main branch.
## Contributing
1. Fork it
2. Create a branch (`git checkout -b my-new-guide`)
3. Commit your changes (`git commit -am 'Add new guide for elements'`)
4. Push to the branch (`git push origin my-new-guide`)
5. Create new Pull Request