Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/d9beud/genealogist.d9beud.com
Genealogist's showcase site
https://github.com/d9beud/genealogist.d9beud.com
Last synced: about 2 months ago
JSON representation
Genealogist's showcase site
- Host: GitHub
- URL: https://github.com/d9beud/genealogist.d9beud.com
- Owner: d9beuD
- License: mit
- Created: 2024-02-06T19:12:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-26T14:34:29.000Z (11 months ago)
- Last Synced: 2024-02-26T15:49:50.518Z (11 months ago)
- Language: HTML
- Homepage: https://genealogist.d9beud.com
- Size: 2.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Deploy site with GitHub Pages](https://github.com/d9beuD/genealogist.d9beud.com/actions/workflows/jekyll-gh-pages.yml/badge.svg)](https://github.com/d9beuD/genealogist.d9beud.com/actions/workflows/jekyll-gh-pages.yml)
# Genealogist landing page
This repository stores and host the [Genealogist](https://github.com/d9beud/genealogist) landing page. This project is built using
[Jekyll](https://jekyllrb.com/) and hosted on [GitHub Pages](https://pages.github.com/).## Development
### Prerequisites
Follow the [Jekyll installation](https://jekyllrb.com/docs/) and [Gulp quick start](https://gulpjs.com/docs/en/getting-started/quick-start) guides.
### Install dependencies
Install the project dependencies with the following command:
```bash
bundle install
npm install
npm install -g gulp-cli
```### Running the project
Start the Jekyll server with the following command:
```bash
bundle exec jekyll serve -H localhost
```Then, watch for changes in assets with Gulp:
```bash
gulp watch
```## Deployment
The project is automatically deployed to GitHub Pages using the [jekyll-gh-pages.yml](.github/workflows/jekyll-gh-pages.yml) workflow.
If you want to build it yourself, run the following command:```bash
gulp
bundle exec jekyll build
```Then you can use the site output in the `_site` directory.