https://github.com/webosbrew/pages
https://github.com/webosbrew/pages
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/webosbrew/pages
- Owner: webosbrew
- Created: 2021-11-18T04:31:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-13T14:29:04.000Z (about 2 years ago)
- Last Synced: 2025-04-10T00:51:21.899Z (about 1 year ago)
- Language: Python
- Size: 121 KB
- Stars: 10
- Watchers: 4
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webosbrew.github.io
webOS Brew Community Development, Hacking & Reverse-Engineering Documentation.
## Usage
This repo is published on: [https://webosbrew.org](https://webosbrew.org)
## Development
This page is built using [Pelican](https://blog.getpelican.com/). Pelican is
based on Python and all dependencies of our project can be installed using pip:
```sh
# Create virtual environment
python3 -m venv venv/
# Enter the environment
. venv/bin/activate
# Install dependencies.
pip3 install -r requirements.txt
```
In order to then serve the page with autoreload use this:
```sh
pelican content -l -r
```