diff --git a/.bundle/config b/.bundle/config new file mode 100644 index 0000000..2369228 --- /dev/null +++ b/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_PATH: "vendor/bundle" diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..9e1328e --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,41 @@ +# Javascript Node CircleCI 2.0 configuration file +# +# Check https://circleci.com/docs/2.0/language-javascript/ for more details +# +version: 2 +jobs: + build: + working_directory: ~/beautiful-web-type + docker: + # specify the version you desire here + - image: circleci/ruby:2.6-node + + steps: + - checkout + + - run: gem install bundler:1.17.2 + + # Restoring bundler cache + - restore_cache: + name: Restoring bundler cache + key: bundler-v1-{{ checksum "Gemfile.lock" }} + + #Bundler Dependencies + - run: + name: Jekyll deps + command: bundle install --jobs=4 --retry=3 --path vendor/bundle + + # Saving bundler cache + - save_cache: + name: Saving bundler cache + key: bundler-v1-{{ checksum "Gemfile.lock" }} + paths: + - ./vendor/bundle + + - run: + name: Jekyll build + command: bundle exec jekyll build + + - run: + name: Pinging FeaturePeek + command: bash <(curl -s https://peek.run/ci) diff --git a/.gitignore b/.gitignore index f87abb2..8efd34f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ _site .sass-cache/* .dat .jekyll-metadata -Gemfile.lock +node_modules +vendor \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..16258db --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source 'https://rubygems.org' + +gem 'jekyll' +gem 'jekyll-sitemap' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..c62b1b3 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,66 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.6.0) + public_suffix (>= 2.0.2, < 4.0) + colorator (1.1.0) + concurrent-ruby (1.1.5) + em-websocket (0.5.1) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + eventmachine (1.2.7) + ffi (1.10.0) + forwardable-extended (2.6.0) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.8.5) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (~> 1.14) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-sitemap (1.3.1) + jekyll (>= 3.7, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (1.17.0) + liquid (4.0.3) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + mercenary (0.3.6) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (3.0.3) + rb-fsevent (0.10.3) + rb-inotify (0.10.0) + ffi (~> 1.0) + rouge (3.3.0) + ruby_dep (1.5.0) + safe_yaml (1.0.5) + sass (3.7.4) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + +PLATFORMS + ruby + +DEPENDENCIES + jekyll + jekyll-sitemap + +BUNDLED WITH + 1.17.2 diff --git a/_config.yml b/_config.yml index 0986a08..870a9f4 100644 --- a/_config.yml +++ b/_config.yml @@ -1,10 +1,10 @@ -url: 'https://beautifulwebtype.com' +url: '' plugins: - jekyll-sitemap include: ['.well-known'] -exclude: ['Rakefile'] +exclude: ['Rakefile', 'vendor'] collections: typefaces: diff --git a/peek.yml b/peek.yml new file mode 100644 index 0000000..ee593ac --- /dev/null +++ b/peek.yml @@ -0,0 +1 @@ +staticBuildPath: /_site \ No newline at end of file