https://github.com/devsetgo/7oi
Seven of I website
https://github.com/devsetgo/7oi
Last synced: 4 months ago
JSON representation
Seven of I website
- Host: GitHub
- URL: https://github.com/devsetgo/7oi
- Owner: devsetgo
- License: mit
- Created: 2019-11-30T17:24:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-18T00:21:59.000Z (7 months ago)
- Last Synced: 2025-04-18T14:07:54.443Z (7 months ago)
- Language: SCSS
- Size: 8.48 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seven of I Static Site
Hugo site for SevenofI.com
### Build and Deploy Site
Build Hugo site and then build and push the docker container.
```bash
# install bumpcalver
pip install --upgrade bumpcalver
# build the site
hugo
# bump the calendar version
make bump
# build the docker container
docker build --no-cache -t 7oi:2024-11-08 .
# tag the docker container
docker tag 7oi:2024-11-08 mikeryan56/7oi:2024-11-08
# push the docker container
docker push mikeryan56/7oi:2024-11-08
# tag the docker container as latest
docker tag 7oi:2024-11-08 mikeryan56/7oi:latest
# push the docker container as latest
docker push mikeryan56/7oi:latest
```