forked from academicpages/academicpages.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:satyamtransformer/satyamtransform…
…er.github.io
- Loading branch information
Showing
64 changed files
with
643 additions
and
2,849 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# Ignore the contents of the _site directory | ||
# Ignore the contents of the _site directory and other cache directories | ||
_site/ | ||
.sass-cache/ | ||
|
||
# Ignore the directory for local files during development | ||
local/ | ||
|
||
# Ignore the Gemfile that is generated | ||
Gemfile.lock | ||
|
||
# Ingore files created by npm | ||
node_modules | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Base image: Ruby with necessary dependencies for Jekyll | ||
FROM ruby:3.2 | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y \ | ||
build-essential \ | ||
nodejs \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /usr/src/app | ||
|
||
# Copy Gemfile and Gemfile.lock into the container (necessary for `bundle install`) | ||
COPY Gemfile Gemfile.lock ./ | ||
|
||
# Install bundler and dependencies | ||
RUN gem install bundler:2.3.26 && bundle install | ||
|
||
# Expose port 4000 for Jekyll server | ||
EXPOSE 4000 | ||
|
||
# Command to serve the Jekyll site | ||
CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0", "--watch"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,11 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Hello! This is where you manage which Jekyll version is used to run. | ||
# When you want to use a different version, change it below, save the | ||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: | ||
# | ||
# bundle exec jekyll serve | ||
# | ||
# This will help ensure the proper Jekyll version is running. | ||
# Happy Jekylling! | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
|
||
# If you want to use Jekyll native, uncomment the line below. | ||
# To upgrade, run `bundle update`. | ||
|
||
# gem "jekyll" | ||
|
||
gem "wdm", "~> 0.1.0" if Gem.win_platform? | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
# gem "jekyll-archives" | ||
gem "jekyll-feed" | ||
gem 'jekyll' | ||
gem 'jekyll-feed' | ||
gem 'jekyll-sitemap' | ||
gem 'hawkins' | ||
gem "webrick", "~> 1.8" | ||
gem 'jemoji' | ||
gem 'webrick', '~> 1.8' | ||
end | ||
|
||
gem 'github-pages' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.