This repository contains the source code for the CCExtractor website. It is built using Hugo (Extended Version).
It is being built automatically using Hugo with Netlify's continuous deployment.
Follow these steps to set up the project on your local machine.
Ensure you have the following installed:
Download and install Go from the official site:
🔗 Download Go
🔹 Install Hugo Extended Version
choco install hugo-extended -ysudo apt-get install hugobrew install hugohugo versionhugo v0.143.1+extended windows/amd64 ...The website uses the Compose theme, which can be set up in two ways:
By default, the theme is included as a Hugo module, as seen in config.toml:
theme = ["github.com/Techno-Disaster/compose"]hugo mod get -u
hugo mod tidyIf you need to make changes to the theme, use a local version instead of the module.
git clone https://github.com/onweru/compose.git themes/compose# Comment out the Hugo module theme
# theme = ["github.com/Techno-Disaster/compose"]
# Use the local theme
theme = "compose"Once the theme setup is complete, build and run the website locally:
hugo --gchugo serveNow, open http://localhost:1313/ in your browser to view the site. 🚀
This project is licensed under the Apache-2.0 License. See the LICENSE file for details.