https://github.com/atomvm/atomvm.org
atomvm.org GitHub pages repo
https://github.com/atomvm/atomvm.org
pages
Last synced: 2 months ago
JSON representation
atomvm.org GitHub pages repo
- Host: GitHub
- URL: https://github.com/atomvm/atomvm.org
- Owner: atomvm
- Created: 2025-06-10T13:53:11.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-06-24T07:32:04.000Z (9 months ago)
- Last Synced: 2025-06-24T07:32:26.544Z (9 months ago)
- Topics: pages
- Language: HTML
- Homepage: https://atomvm.org/
- Size: 173 KB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: news.md
Awesome Lists containing this project
README
# Prerequisites
To build this website, you will need:
* [Ruby 2.7](https://www.ruby-lang.org/en/)
* [Bundler](https://bundler.io)
# Instructions
Change your working directory to the directory containing this README:
cd
[Optional] We recommend installing all the needed Ruby gems locally (by convention, under `vendor/bundle`):
bundle config set --local path 'vendor/bundle'
Install all the needed gems. This may take some time to complete. Be patient.
bundle install
Serve up your site!
bundle exec jekyll serve [--host ] [--port ]
or build the website:
bundle exec jekyll build [-d ] [--watch]
# Add a News Post
To post a new article add a file to the _posts directory in the format:
`YYYY-MM-DD-{title}.md`
with a title section like:
```
---
layout: post
title: {Your Headline}
excerpt_separator:
---
```
followed by the news post in markdown format.
If you are posting a long article you can tell where to cut off the introduction that is displayed in the news section, leaving the full article available by following the article link, by placing a line containing:
``
All content following the above line will only be included in the full article, content before will be displayed as a description on the `atomvm.org/news` page.