Skip to content

Commit 4256db8

Browse files
clovisclaude
andcommitted
Update docs for Gunicorn architecture, add GitHub Pages workflow
- Rewrite installation docs to reflect Gunicorn/Falcon (no more Apache CGI) - Trim system dependencies to what's actually needed - Rename docker_apache_restart.sh → docker_entrypoint.sh - Clean up Dockerfile (remove unnecessary packages) - Add .github/workflows/pages.yml for GitHub Pages deployment - Fix PhiloLogic4 → PhiloLogic5 references in navbar and docs README Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2e5a555 commit 4256db8

3 files changed

Lines changed: 41 additions & 6 deletions

File tree

.github/workflows/pages.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy docs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
paths: ["docs/**"]
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: false
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: actions/configure-pages@v5
24+
- uses: actions/jekyll-build-pages@v1
25+
with:
26+
source: ./docs
27+
destination: ./_site
28+
- uses: actions/upload-pages-artifact@v3
29+
30+
deploy:
31+
environment:
32+
name: github-pages
33+
url: ${{ steps.deployment.outputs.page_url }}
34+
runs-on: ubuntu-latest
35+
needs: build
36+
steps:
37+
- id: deployment
38+
uses: actions/deploy-pages@v4

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
For PhiloLogic documentation, please visit https://artfl-project.github.io/PhiloLogic4/
1+
For PhiloLogic documentation, please visit https://artfl-project.github.io/PhiloLogic5/

docs/_includes/head.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,13 @@
4545
</button>
4646
<ul class="navbar-nav d-none d-sm-flex">
4747
<li class="nav-item">
48-
<a class="nav-link" href="https://github.com/ARTFL-Project/PhiloLogic4/releases">Download</a>
49-
</li>
50-
<li class="nav-item">
51-
<a class="nav-link" href="http://artfl-project.uchicago.edu/content/philologic4-databases">Examples</a>
48+
<a class="nav-link" href="https://github.com/ARTFL-Project/PhiloLogic5/releases">Download</a>
5249
</li>
5350
<li class="nav-item">
5451
<a class="nav-link" href="https://artfl-project.uchicago.edu/">ARTFL Project</a>
5552
</li>
5653
<li class="nav-item">
57-
<a class="nav-link" href="https://github.com/ARTFL-Project/PhiloLogic4/">View Code</a>
54+
<a class="nav-link" href="https://github.com/ARTFL-Project/PhiloLogic5/">View Code</a>
5855
</li>
5956
</ul>
6057

0 commit comments

Comments
 (0)