Last active
December 1, 2024 02:06
-
-
Save VimalMollyn/73c61521f34dce0ffbd2952cad084f60 to your computer and use it in GitHub Desktop.
Ghost static site generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function make_website --description "Recreated my website" | |
set hostServer $argv[1] | |
set hostURL (string split "http://" $hostServer)[2] | |
set websiteDir $argv[2] | |
set domainName $argv[3] | |
set currDir (pwd) | |
cd $websiteDir | |
# delete all files except the .git | |
find . ! -name '*.git*' -type d -exec rm -f {} + | |
# populate the websiteDir | |
wget -r -nH -P . -E -np -k --base=$hostServer $hostServer | |
wget -r -nH -P . -E -np $hostServer/sitemap.xsl | |
wget -r -nH -P . -E -np $hostServer/sitemap.xml | |
wget -r -nH -P . -E -np $hostServer/sitemap-pages.xml | |
wget -r -nH -P . -E -np $hostServer/sitemap-posts.xml | |
wget -r -nH -P . -E -np $hostServer/sitemap-authors.xml | |
wget -r -nH -P . -E -np $hostServer/sitemap-tags.xml | |
echo "Sed is doing it's magic :D" | |
LC_ALL=C find . -type f -not -wholename '*.git*' -exec sed -i '' -e "s,/index.html,/,g" {} + | |
LC_ALL=C find . -type f -not -wholename '*.git*' -exec sed -i '' -e "s,index.html,/,g" {} + | |
LC_ALL=C find . -type f -not -wholename '*.git*' -exec sed -i '' -e "s,$hostServer,$domainName,g" {} + | |
LC_ALL=C find . -type f -not -wholename '*.git*' -exec sed -i '' -e "s,$hostURL,$domainName,g" {} + | |
# add a CNAME file | |
echo $domainName > CNAME | |
cd $currDir | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: