https://github.com/stuartsul/stuartsul.github.io_src
Source code for StuartSul.github.io
https://github.com/stuartsul/stuartsul.github.io_src
Last synced: 9 months ago
JSON representation
Source code for StuartSul.github.io
- Host: GitHub
- URL: https://github.com/stuartsul/stuartsul.github.io_src
- Owner: StuartSul
- Created: 2023-11-14T08:36:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-22T21:29:49.000Z (9 months ago)
- Last Synced: 2025-09-22T23:31:15.539Z (9 months ago)
- Language: JavaScript
- Size: 3.49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StuartSul.github.io_src
Source code for `StuartSul.github.io` (`stuartsul.com`).
## Develop
Simply use the Dockerfile provided as a dev environment.
Build with the following command:
```bash
docker build -t jekyll .
```
Run the environment with the following command:
```bash
docker run --rm -p 4000:4000 -p 35729:35729 --name jekyll -v "$PWD":/app jekyll
```
The website will be accessible at `0.0.0.0:4000`.
## Deploy
Run the following command:
```bash
docker build -t jekyll .
docker run --rm --name jekyll -v "$PWD":/app jekyll /bin/bash -c "cd /app && bundle && bundle exec jekyll build"
```
The build artifact will be available at `./_site`.
## CI/CD
This repository automatically pushes the build artifacts to a separate repository through GitHub Actions. Details available at `.github/workflows/build-deploy.yaml`.