https://github.com/signpath/fdn-website
List of Open Source projects with certificates from SignPath Foundation
https://github.com/signpath/fdn-website
Last synced: about 1 year ago
JSON representation
List of Open Source projects with certificates from SignPath Foundation
- Host: GitHub
- URL: https://github.com/signpath/fdn-website
- Owner: SignPath
- License: cc0-1.0
- Created: 2020-04-10T14:26:20.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-04-04T12:52:25.000Z (about 1 year ago)
- Last Synced: 2025-04-04T13:42:19.716Z (about 1 year ago)
- Language: Python
- Size: 1.88 MB
- Stars: 7
- Watchers: 7
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SignPath Foundation Website
This repository contains the SignPath Foundation website data. It runs on Github pages, which is built upon [Jekyll](https://jekyllrb.com).
## Running it locally
There are two ways of running the application locally: Either directly using a local Ruby installation or by using Docker. In both setups the website will be reachable on [http://localhost:4000](http://localhost:4000)
### Running it on local Ruby installation
You need to have Ruby and RubyGems installed. See the [official documentation of Jekyll](https://jekyllrb.com/docs/installation/).
Then, run the following command to install all dependencies:
gem install jekyll bundler
bundle install
To run the installation locally, you need to execute
bundle exec jekyll serve
### Running it using Docker
You need to have Docker installed.
Then, run the following command (in PowerShell):
docker run --rm -e JEKYLL_ENV=docker --label=jekyll --volume=${PWD}/docs:/srv/jekyll -it -p 127.0.0.1:4000:4000 jekyll/jekyll jekyll serve --force_polling