From e5b494ecb86195ca7dcc4e6e49e808a09afe9c0f Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Sun, 24 Apr 2022 12:14:01 -0500 Subject: [PATCH] Enable Cloudflare Pages (#1100) --- Pipfile | 3 ++- Pipfile.lock | 20 ++++++++++++++------ README.md | 4 ++-- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Pipfile b/Pipfile index 1dce2358..a4bf2145 100644 --- a/Pipfile +++ b/Pipfile @@ -8,9 +8,10 @@ mkdocs = "*" mkdocs-material = {path = "./mkdocs-material"} mkdocs-static-i18n = "*" mkdocs-git-revision-date-localized-plugin = "*" +typing-extensions = "*" [dev-packages] scour = "*" [requires] -python_version = "3.8" +python_version = "3.7" diff --git a/Pipfile.lock b/Pipfile.lock index 925a82ee..64afc13e 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,11 +1,11 @@ { "_meta": { "hash": { - "sha256": "417ce9a8799680d98bc8933ac6f592b68dda2e97429d2671290c112bdba09d91" + "sha256": "2d68765ce86bf264f0a29d6b9f31202a71615d6aad4653cffc874bd095267d29" }, "pipfile-spec": 6, "requires": { - "python_version": "3.8" + "python_version": "3.7" }, "sources": [ { @@ -405,11 +405,11 @@ }, "pygments": { "hashes": [ - "sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65", - "sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a" + "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb", + "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519" ], - "markers": "python_version >= '3.5'", - "version": "==2.11.2" + "markers": "python_version >= '3.6'", + "version": "==2.12.0" }, "pymdown-extensions": { "hashes": [ @@ -521,6 +521,14 @@ "markers": "python_version >= '3.6'", "version": "==1.1.1" }, + "typing-extensions": { + "hashes": [ + "sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708", + "sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376" + ], + "index": "pypi", + "version": "==4.2.0" + }, "urllib3": { "hashes": [ "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14", diff --git a/README.md b/README.md index 1c59158a..9c96502c 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,9 @@ Our current list of team members can be found [here](https://github.com/orgs/pri 3. Install **pipenv**: `pip install pipenv` 4. Start a pipenv shell: `pipenv shell` 5. Install dependencies: `pipenv install --dev` -6. Serve the site locally: `mkdocs serve --config-file mkdocs.production.yml` +6. Serve the site locally: `mkdocs serve` - The site will be available at `http://localhost:8000` - - You can build the site locally with `mkdocs build --config-file mkdocs.production.yml` + - You can build the site locally with `mkdocs build` - This version of the site should be identical to the live, production version ## Releasing