Static website that can be used as a scafoldding for marketing, trailer, or other static website needs. This project utilizes Jekyll to generate pages based on layouts and layout partials. Additionally, it processes your SCSS files.
brew doctor
If brew doctor comes up with any issues, fix them first.
Upgrade Ruby [do not use brew to install Ruby – use rbenv instead]brew update && brew upgradebrew install rbenv ruby-buildecho 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
Add PATH (may not be needed so check path first with echo $PATH):export PATH="~/.rbenv/shims:$PATH"
First, find the desired version:rbenv install -l
Install that version (e.g. 2.6.5):rbenv install 2.6.5
Then set the global version to the desired Ruby version:rbenv global 2.6.5
At this point you should see the desired version set with the following command:rbenv versions
Expected output:
system
* 2.6.5 (set by /Users/USERNAME/.rbenv/version)
gem install bundlercd /YOUR_PATH_TO_REPO/bundle install --path _ruby_vendor/bundle
jekyll --version && bundler --version
bundle info bundlerbundle info jekyllJEKYLL_ENV=prod bundle exec jekyll build
JEKYLL_ENV=stage bundle exec jekyll build
JEKYLL_ENV=dev bundle exec jekyll build
JEKYLL_ENV=prod bundle exec jekyll serve
JEKYLL_ENV=stage bundle exec jekyll serve
JEKYLL_ENV=dev bundle exec jekyll serve
bundle exec jekyll serve ):Continuous integration and continuous delivery (CI/CD) pipeline has yet to be established.
The URLs are ready.
TBD
TBD
TBD