Overview:
The Luciano Nooijen personal website is a static website built using the Hugo framework. It can be easily hosted on any hosting service and offers both a development and production environment.
Features:
- Built in Hugo framework
- Development environment accessible on localhost:1313
- Production-ready static files build
Installation:
To install and use the Luciano Nooijen personal website, follow these steps:
- Clone the repository or download the source code.
- Open a terminal or command prompt and navigate to the project directory.
- Run the command
hugo serverto start the development environment. The website will now be accessible on http://localhost:1313. - Optionally, you can use the command
open http://localhost:1313 && hugo serverto open the website in your default browser automatically. - To build the static files for production, run the command
rm -rf build && hugo -d build -b [url]. Replace[url]with the desired base URL for your website. - Upload the contents of the
buildfolder to your web host.
Alternatively, you can use the following make commands:
make server: Runshugo server.make dev: Runshugo serverand openslocalhost:1313in the browser.make build: Runs thehugo buildcommand as explained under the “production” header.
Summary:
The Luciano Nooijen personal website is a static website built using the Hugo framework, making it easy to host and deploy. It offers both a development and production environment and provides a set of useful make commands for convenience.