This guide will walk you through the process of cloning and setting up the blog repository, installing a theme, and running the blog locally using Hugo.
-
Clone the Blog Repository
Start by cloning the main blog repository to your local machine.git clone https://github.com/ByteShifters/Blog -
Navigate to the
themesDirectory
Move into thethemesdirectory inside theBlogproject.cd Blog/themes -
Clone the Theme Repository
Clone the Hugo theme into thethemesdirectory and rename it asByteShifter.git clone https://github.com/ByteShifters/Hugo-Theme.git ByteShifters -
Navigate Back to the Root Directory
Move back to the root directory of the blog project.cd .. -
Run the Blog
Use Hugo's development server to start the blog locally.hugo serve
Once the server is running, you should see an output like this:
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
Press Ctrl+C to stop the server.
Navigate to http://localhost:1313/ in your web browser to see your blog in action.