Coder Social home page Coder Social logo

netlify.toml about hugo-geekdoc HOT 4 CLOSED

thegeeklab avatar thegeeklab commented on June 14, 2024
netlify.toml

from hugo-geekdoc.

Comments (4)

xoxys avatar xoxys commented on June 14, 2024

This is just a Hugo theme. Deployments are completely unrelated to the used theme. For Hugo itself, please check the docs https://gohugo.io/hosting-and-deployment/hosting-on-netlify/

from hugo-geekdoc.

xoxys avatar xoxys commented on June 14, 2024

Maybe I misunderstood your initial question a bit. You are looking for a way to download the release tarball of the theme as the submodule way is not working out-of-the-box right?

Here are some possible solutions:

  • add a Makefile to your repo to bundle the required steps:
THEME_VERSION := v0.8.2
THEME := hugo-geekdoc
BASEDIR := docs
THEMEDIR := $(BASEDIR)/themes

.PHONY: doc
doc: doc-assets doc-build

.PHONY: doc-assets
doc-assets:
	mkdir -p $(THEMEDIR)/$(THEME)/ ; \
	curl -sSL "https://github.com/thegeeklab/$(THEME)/releases/download/${THEME_VERSION}/$(THEME).tar.gz" | tar -xz -C $(THEMEDIR)/$(THEME)/ --strip-components=1

.PHONY: doc-build
doc-build:
        cd $(BASEDIR); hugo

.PHONY: clean
clean:
	rm -rf $(THEMEDIR) && \
        rm -rf $(BASEDIR)/public

This Makfile can be used in your netlify.toml:

[build]
publish = "docs/public"
command = "make doc"

See https://docs.netlify.com/configure-builds/file-based-configuration/#sample-file

  • you can also chain all required commands to prepare the theme and build your site on the command option like this:
[build]
publish = "docs/public"
command = "command1 && command 2 && command3 && hugo"

from hugo-geekdoc.

xoxys avatar xoxys commented on June 14, 2024

Whatever solution you choose, the main goal is to ensure you (or netlify) downloads the prebuilt theme release tarball or run the required npm/gulp command to pre-process the theme assets before running the hugo build command. Hope that helps.

from hugo-geekdoc.

MarcinKlejna avatar MarcinKlejna commented on June 14, 2024

Thank you very much.

from hugo-geekdoc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.