Working....
9.2 KiB
title | date | draft | description | slug | tags | series | series_order | |||
---|---|---|---|---|---|---|---|---|---|---|
Installazione | 2020-08-16 | false | Come installare il tema Blowfish. | installation |
|
|
2 |
Segui semplicemente la procedura standard Avvio Rapido di Hugo per iniziare subito.
Sono riportate le istruzioni dettagliate per l'installazione. Sono disponibili anche le istruzioni per aggiornare il tema.
Installazione
These instructions will get you up and running using Hugo and Blowfish from a completely blank state. Most of the dependencies mentioned in this guide can be installed using the package manager of choice for your platform.
Queste istruzioni ti consentiranno di iniziare a utilizzare Hugo e Blowfish partendo da uno stato completamente vuoto. La maggior parte delle dipendenze menzionate in questa guida possono essere installate utilizzando il gestore pacchetti corretti per la tua piattaforma.
Installare Hugo
Se non hai mai utilizzato Hugo prima, dovrai [installarlo nella tua local machine] (https://gohugo.io/getting-started/installing).
Puoi verificare se hai già installato Hugo utilizzando il comando hugo version
.
{{< alert >}} Assicurati di usare la versione 0.87.0 di Hugo o successiva, poiché il tema sfrutta alcune delle ultime caratteristiche di Hugo. {{< /alert >}}
Puoi trovare le istruzioni dettagliate sull'installazione per la propria piattaforma in Documenti Hugo.
Strumenti Blowfish (raccomandato)
Abbiamo appena lanciato un nuovo strumento CLI per aiutarti a iniziare con Blowfish. Questo ti permette di creare un nuovo progetto Hugo, di installare il tema e di impostare i file di configurazione del tema per te. È ancora in fase beta, quindi per favore [segnala qualsiasi problema che riscontri] (https://github.com/nunocoracao/blowfish-tools).
Installa globalmente lo strumento CLI usando npm (o altri gestori di pacchetti):
npx blowfish-tools
oppure
npm i -g blowfish-tools
Poi esegui il comando blowfish-tools
per avviare un'esecuzione interattiva che ti guiderà attraverso la creazione e la configurazione dei casi d'uso.
blowfish-tools
È anche possibile eseguire il comando blowfish-tools new
per creare un nuovo progetto Hugo e installare il tema in una sola volta. Per ulteriori informazioni, consulta la guida del CLI.
blowfish-tools new mynewsite
Ecco un rapido video che ti mostra quanto sia veloce iniziare a utilizzare Blowfish con lo strumento CLI:
Installazione Manuale
Crea un novo sito
Esegui il comando hugo new site mywebsite
per creare un nuovo sito di Hugo in una cartella chiamata mywebsite
.
La cartella del progetto può essere chiamata come si vuole, ma le istruzioni che seguono presuppongono che si chiami mywebsite
. Se si usa un nome diverso, sostituiscilo di conseguenza.
Scaricare il tema Blowfish
Esistono diversi modi per installare il tema Blowfish nel proprio sito web Hugo. Dal più facile al più difficile da installare e mantenere, sono:
- Git submodule (recommended)
- Hugo module
- Copia manuale dei file
Se non sei sicuro, scegli il metodo Git submodule.
Install using git
This method is the quickest and easiest for keeping the theme up-to-date. Besides Hugo and Go, you'll also need to ensure you have Git installed on your local machine.
Change into the directory for your Hugo website (that you created above), initialise a new git
repository and add Blowfish as a submodule.
cd mywebsite
git init
git submodule add -b main https://github.com/nunocoracao/blowfish.git themes/blowfish
Then continue to set up the theme configuration files.
Install using Hugo
For this method you'll use Hugo to manage your themes. Hugo uses Go to initialise and manage modules so you need to ensure you have go
installed before proceeding.
-
Download and install Go. You can check if it's already installed by using the command
go version
.{{< alert >}} Make sure you are using Go version 1.12 or later as Hugo requires this for modules to work correctly. {{< /alert >}}
-
From your Hugo project directory (that you created above), initialise modules for your website:
# If you're managing your project on GitHub hugo mod init github.com/<username>/<repo-name> # If you're managing your project locally hugo mod init my-project
-
Add the theme to your configuration by creating a new file
config/_default/module.toml
and adding the following:[[imports]] path = "github.com/nunocoracao/blowfish/v2"
-
Start your server using
hugo server
and the theme will be downloaded automatically. -
Continue to set up the theme configuration files.
Install manually
-
Download the latest release of the theme source code.
{{< button href="https://github.com/nunocoracao/blowfish/releases/latest" target="_blank" >}}Download from Github{{< /button >}}
-
Extract the archive, rename the folder to
blowfish
and move it to thethemes/
directory inside your Hugo project's root folder. -
Continue to set up the theme configuration files.
Set up theme configuration files
In the root folder of your website, delete the config.toml
file that was generated by Hugo. Copy the *.toml
config files from the theme into your config/_default/
folder. This will ensure you have all the correct theme settings and will enable you to easily customise the theme to your needs.
{{< alert >}}
Note: You should not overwrite the module.toml
file if one already exists in your project!
{{< /alert >}}
Depending on how you installed the theme you will find the theme config files in different places:
- Hugo Modules: In the Hugo cache directory, or download a copy from GitHub
- Git submodule or Manual install:
themes/blowfish/config/_default
Once you've copied the files, your config folder should look like this:
config/_default/
├─ config.toml
├─ languages.en.toml
├─ markup.toml
├─ menus.en.toml
├─ module.toml # if you installed using Hugo Modules
└─ params.toml
{{< alert >}}
Important: If you didn't use Hugo Modules to install Blowfish, you must add the line theme = "blowfish"
to the top of your config.toml
file.
{{< /alert >}}
Next steps
The basic Blowfish installation is now complete. Continue to the [Getting Started]({{< ref "getting-started" >}}) section to learn more about configuring the theme.
Installing updates
From time to time there will be new releases posted that apply fixes and add new functionality to the theme. In order to take advantage of these changes, you will need to update the theme files on your website.
How you go about this will depend on the installation method you chose when the theme was originally installed. Instructions for each method can be found below.
Update using git
Git submodules can be updated using the git
command. Simply execute the following command and the latest version of the theme will be downloaded into your local repository:
git submodule update --remote --merge
Once the submodule has been updated, rebuild your site and check everything works as expected.
Update using Hugo
Hugo makes updating modules super easy. Simply change into your project directory and execute the following command:
hugo mod get -u
Hugo will automatically update any modules that are required for your project. It does this by inspecting your module.toml
and go.mod
files. If you have any issues with the update, check to ensure these files are still configured correctly.
Then simply rebuild your site and check everything works as expected.
Update manually
Updating Blowfish manually requires you to download the latest copy of the theme and replace the old version in your project.
{{< alert >}} Note that any local customisations you have made to the theme files will be lost during this process. {{< /alert >}}
-
Download the latest release of the theme source code.
{{< button href="https://github.com/nunocoracao/blowfish/releases/latest" target="_blank" >}}Download from Github{{< /button >}}
-
Extract the archive, rename the folder to
blowfish
and move it to thethemes/
directory inside your Hugo project's root folder. You will need to overwrite the existing directory to replace all the theme files. -
Rebuild your site and check everything works as expected.