diff --git a/amplify.yml b/amplify.yml deleted file mode 100644 index 67b79ec..0000000 --- a/amplify.yml +++ /dev/null @@ -1,29 +0,0 @@ -version: 1 -frontend: - phases: - preBuild: - commands: - - yum install -y curl - - curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.118.2/hugo_extended_0.118.2_Linux-64bit.tar.gz" - - tar -xvf hugo_extended_0.118.2_Linux-64bit.tar.gz - - mv hugo /usr/local/bin/ - - rm hugo_extended_0.118.2_Linux-64bit.tar.gz - - echo "HUGO 0.118.2 INSTALLED" - - curl -LO "https://dl.google.com/go/go1.20.5.linux-amd64.tar.gz" - - tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz - - export PATH=$PATH:/usr/local/go/bin - - rm go1.20.5.linux-amd64.tar.gz - - echo "GO 1.20.5 INSTALLED" - - npm install - build: - commands: - - npm run project-setup - - npm run build - artifacts: - # IMPORTANT - Please verify your build output directory - baseDirectory: /public - files: - - "**/*" - cache: - paths: - - node_modules/**/* diff --git a/netlify.toml b/netlify.toml deleted file mode 100755 index d659856..0000000 --- a/netlify.toml +++ /dev/null @@ -1,7 +0,0 @@ -[build] -publish = "public" -command = "yarn project-setup; yarn build" - -[build.environment] -HUGO_VERSION = "0.118.2" -GO_VERSION = "1.20.5" diff --git a/theme.toml b/theme.toml deleted file mode 100644 index 6e9398c..0000000 --- a/theme.toml +++ /dev/null @@ -1,38 +0,0 @@ -name = "Hugoplate" -license = "MIT" -licenselink = "https://github.com/zeon-studio/hugoplate/blob/main/LICENSE" -description = "Hugoplate is a free starter template built with Hugo, and TailwindCSS, providing everything you need to jumpstart your Hugo project and save valuable time." -homepage = "https://github.com/zeon-studio/hugoplate" -demosite = "https://hugoplate.netlify.app/" -min_version = "0.118.2" - -tags = [ - "blog", - "responsive", - "minimal", - "personal", - "light", - "dark", - "multilingual", - "landing", - "contact", - "dark mode", - "tailwindcss", -] - -features = [ - "Multi-Authors", - "Search", - "Multilingual", - "Dark Mode", - "Taxonomies", -] - -[author] -name = "Zeon Studio" -homepage = "https://zeon.studio" - -[original] -author = "Zeon Studio" -homepage = "https://zeon.studio" -repo = "https://github.com/zeon-studio/themeplate" diff --git a/vercel-build.sh b/vercel-build.sh deleted file mode 100755 index 17138f0..0000000 --- a/vercel-build.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash - -# default versions -NODE_VERSION='18.16.1'; -GO_VERSION='1.20.5'; -HUGO_VERSION='0.118.2'; - -# install Node.js -# echo "Installing Node.js $NODE_VERSION..." -# curl -sSOL https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.gz -# tar -xzf node-v${NODE_VERSION}.tar.gz -# export PATH=$PATH:/usr/local/bin -# rm -rf node-v${NODE_VERSION}.tar.gz - -echo "USING NODE VERSION: $(node -v)" - -# install Go -echo "Installing Go $GO_VERSION..." -curl -sSOL https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz -tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz -export PATH=$PATH:/usr/local/go/bin -rm -rf go${GO_VERSION}.linux-amd64.tar.gz -go version - -# install Hugo -echo "Installing Hugo $HUGO_VERSION..." -curl -sSOL https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz -tar -xzf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz -mv hugo /usr/local/bin/ -rm -rf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz -hugo version - -# project setup -echo "Project setting up..." -npm run project-setup - -# install dependencies -echo "Installing project dependencies..." -npm install - -# run the build command -echo "Running the build command..." -npm run build diff --git a/vercel.json b/vercel.json deleted file mode 100755 index f19fd34..0000000 --- a/vercel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "builds": [ - { - "src": "vercel-build.sh", - "use": "@vercel/static-build", - "config": { - "distDir": "public" - } - } - ] -}