Skip to content

Commit

Permalink
Host on Github Pages (#1)
Browse files Browse the repository at this point in the history
less load on my server
  • Loading branch information
NotLe0n committed Oct 29, 2023
1 parent 6bf7395 commit e94f539
Show file tree
Hide file tree
Showing 9 changed files with 169 additions and 114 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Generate Tailwind CSS
run: ./compile-css.sh
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './static/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
# DDP homepage
Run using `./run.sh`.

server/config.json:
```json
{
"port": "",
"certKey": "",
"certPath": ""
}
```
Static homepage hosted on ddp.le0n.dev
Run `./compile-css.sh` first.
4 changes: 2 additions & 2 deletions run.sh → compile-css.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
npx tailwindcss -i ./static/css/input.css -o ./static/css/output.css
node server/server.js
npm install -D tailwindcss
npx tailwindcss -i ./static/css/input.css -o ./static/css/output.css
140 changes: 98 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"express": "^4.18.2"
},
"devDependencies": {
"tailwindcss": "^3.3.3"
"tailwindcss": "^3.3.5"
}
}
38 changes: 0 additions & 38 deletions server/server.js

This file was deleted.

Loading

0 comments on commit e94f539

Please sign in to comment.