diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 1e36be8..88e893c 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,13 +1,13 @@ # These are supported funding model platforms -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +github: [mwood77] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username +ko_fi: mwood77 # Replace with a single Ko-fi username tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry -custom: ['https://buymeacoffee.com/temp.exp'] +custom: ['https://www.paypal.com/paypalme/kklarkson'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/workflows/build-docker.yaml b/.github/workflows/build-docker.yaml index f49a1ee..d4bcf85 100644 --- a/.github/workflows/build-docker.yaml +++ b/.github/workflows/build-docker.yaml @@ -16,7 +16,7 @@ jobs: uses: docker/metadata-action@v4 with: images: | - ghcr.io/netbymatt/ws4kp + ghcr.io/mwood77/ws4kp-international flavor: | latest=false tags: | diff --git a/.github/workflows/github-pages.yaml b/.github/workflows/github-pages.yaml new file mode 100644 index 0000000..54650f5 --- /dev/null +++ b/.github/workflows/github-pages.yaml @@ -0,0 +1,25 @@ +name: GitHub Pages Deployment + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: 22 + + - name: Install Dependencies + run: npm install + + - name: Start Deployment Server + run: npm run pages diff --git a/README.md b/README.md index 162184b..152b3cf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# WeatherStar 4000+ +# WeatherStar 4000+ (International) A live version of this project is available at https://weatherstar.netbymatt.com diff --git a/package-lock.json b/package-lock.json index 44c7216..f90cbe1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "ws4kp", + "name": "ws4kp-international", "version": "6.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "ws4kp", + "name": "ws4kp-international", "version": "6.0.0", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 8d78c5b..525a70e 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ws4kp", + "name": "ws4kp-international", "version": "6.0.0", "description": "Welcome to the WeatherStar 4000+ project page!", "main": "index.js", @@ -8,7 +8,8 @@ "build:css": "sass --style=compressed ./server/styles/scss/main.scss ./server/styles/main.css", "lint": "eslint ./server/scripts/**/*.mjs", "lint:fix": "eslint --fix ./server/scripts/**/*.mjs", - "start": "nodemon index.js" + "start": "nodemon index.js", + "pages": "node index.js" }, "repository": { "type": "git",