Welcome to the Apache Gora website repository! This README provides guidance on building the website locally for development or testing purposes.
To build this website locally, follow these steps:
- Ensure that you have Python 3 installed on your system.
- Clone this repository to your local machine.
git clone https://github.com/apache/gora-site.git
- (Optional) Set up a new Python virtual environment.
python3 -m venv env
source env/bin/activate
- Install the required Python packages using pip.
pip install -r requirements.txt
Note: You may also need to run
pip install "pelican[markdown]"
- Utilize Pelican to generate the website.
pelican content
- Once Pelican has completed generating the website, you can locate the output in the
output
directory.
If you encounter any issues with the website or have suggestions for improvements, please feel free to open an issue or submit a pull request. We welcome contributions from the community!