Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoineco/antoineco.github.io
Personal web page
https://github.com/antoineco/antoineco.github.io
blog github-pages
Last synced: about 23 hours ago
JSON representation
Personal web page
- Host: GitHub
- URL: https://github.com/antoineco/antoineco.github.io
- Owner: antoineco
- License: other
- Created: 2023-08-12T13:31:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-07T01:36:39.000Z (2 months ago)
- Last Synced: 2024-09-07T16:20:48.327Z (2 months ago)
- Topics: blog, github-pages
- Language: Nix
- Homepage: https://acotten.com/
- Size: 19.5 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.cc-by-4.0.txt
Awesome Lists containing this project
README
# Personal Web Page
Source of the web page served at .
## License
This work is dual-licensed under Creative Commons Attribution 4.0 International and ISC.
The content of pages and articles—which includes texts, media and code snippets—is covered by [Creative Commons
Attribution 4.0 International License][cc-by-4.0], unless otherwise specified.The [Bay theme][bay] for Jekyll—which this website is based on—was created by [Eliott Vincent][eliottvincent], and is
covered by [ISC][isc].`SPDX-License-Identifier: Creative Commons Attribution 4.0 International AND ISC`
[bay]: https://github.com/eliottvincent/bay
[eliottvincent]: https://github.com/eliottvincent[isc]: https://www.isc.org/licenses/
[cc-by-4.0]: https://creativecommons.org/licenses/by/4.0/## Serving Locally
### Using Nix
```sh
nix develop --command bundle-lock
``````sh
nix develop --command jekyll serve --drafts
```### Using the Docker image from [actions/jekyll-build-pages][gh-build]
```sh
echo "$GITHUB_TOKEN" | docker login ghcr.io --username "$GITHUB_USER" --password-stdin
``````sh
docker container run -i --rm \
-w /workspace -v "$PWD":/workspace \
-p 4000:4000 \
--entrypoint=bundle \
ghcr.io/actions/jekyll-build-pages:v1.0.13 exec jekyll serve -H 0.0.0.0 --drafts
```[gh-build]: https://github.com/actions/jekyll-build-pages