Browse Source

Remove config comments, remove basepath and other config changes

Ainara Blanco 1 day ago
parent
commit
958cc66838
3 changed files with 3 additions and 64 deletions
  1. 3 42
      _config.yml
  2. 0 13
      dev.sh
  3. 0 9
      docker-compose.yml

+ 3 - 42
_config.yml

@@ -1,59 +1,20 @@
-# Welcome to Jekyll!
-#
-# This config file is meant for settings that affect your whole blog, values
-# which you are expected to set up once and rarely edit after that. If you find
-# yourself editing this file very often, consider using Jekyll's data files
-# feature for the data you need to update frequently.
-#
-# For technical reasons, this file is *NOT* reloaded automatically when you use
-# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
-#
-# If you need help with YAML syntax, here are some quick references for you: 
-# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
-# https://learnxinyminutes.com/docs/yaml/
-#
-# Site settings
-# These are used to personalize your new site. If you look in the HTML files,
-# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
-# You can create any custom variable you would like, and they will be accessible
-# in the templates via {{ site.myvariable }}.
-
 title: Curso de informática básica
 author:
-  name: Ernesto Blanco
-  email: mail@ernestoblanco.com
+  name: Ainara Blanco
+  email: ainara.bcar@gmail.com
 description: Un pequeño curso de informática desde cero.
-baseurl: "/curso-informatica" # the subpath of your site, e.g. /blog
+baseurl: "" # the subpath of your site, e.g. /blog
 url: "" # the base hostname & protocol for your site, e.g. http://example.com
-# twitter_username: jekyllrb
-# github_username:  jekyll
-
-# Build settings
 theme: minima
 plugins:
   - jekyll-feed
   - jekyll-seo-tag
-
-# Exclude from processing.
-# The following items will not be processed, by default.
-# Any item listed under the `exclude:` key here will be automatically added to
-# the internal "default list".
-#
-# Excluded items can be processed by explicitly listing the directories or
-# their entries' file path in the `include:` list.
-#
 exclude:
   - .sass-cache/
   - .jekyll-cache/
   - gemfiles/
   - Gemfile
   - Gemfile.lock
-  - node_modules/
-  - vendor/bundle/
-  - vendor/cache/
-  - vendor/gems/
-  - vendor/ruby/
-
 sass:
   quiet_deps: true
   silence_deprecations: [import]

+ 0 - 13
dev.sh

@@ -1,13 +0,0 @@
-#!/bin/bash
-
-echo "🧹 Limpiando caché de Jekyll..."
-rm -rf .jekyll-cache _site
-
-echo "🔍 Comprobando dependencias..."
-docker compose run --rm jekyll bundle check || {
-  echo "📦 Instalando dependencias faltantes..."
-  docker compose run --rm jekyll bundle install
-}
-
-echo "🚀 Arrancando servidor Jekyll en Docker..."
-docker compose up -d

+ 0 - 9
docker-compose.yml

@@ -1,9 +0,0 @@
-services:
-  jekyll:
-    image: jekyll/jekyll:latest
-    command: jekyll serve --watch --force_polling --host 0.0.0.0
-    ports:
-      - "4000:4000"
-    volumes:
-      - .:/srv/jekyll
-    working_dir: /srv/jekyll