You have the option to build the website either in a remote Coder Workspace or your local VSCode using the Dev Container feature.
Within a Coder workspace (https://dev.fearless.systems), run the following commands:
$ sudo apt install -y bundler
$ sudo bundle install --system
$ bundle exec jekyll serve
Afterward, view the website using Coder's port forwarding feature.
Enable the Dev Containers feature in your local VSCode and reopen the workspace in a Jekyll container by simply running Dev Containers: Reopen in Container
.
Within the container, run the following commands:
$ bundle install
$ bundle exec jekyll serve
Afterward, view the website using VSCode's port forwarding feature.
-
Add your information (e.g., name, status, GitHub ID) to
people.yml
. -
Create a new file
{firstname}.{lastname}.md
under the directory_people/
. Refer to_people/jeehoon.kang.md
as an example. Your website will be accessible athttps://www.fearless.systems/{firstname}.{lastname}
.