From 8d0f21849644ccdfbddcff8aec2f9b5bb6eb26b9 Mon Sep 17 00:00:00 2001 From: Raghad Dahi Date: Sun, 31 May 2026 09:51:26 +0300 Subject: [PATCH] Remove Gitpod files --- .gitpod.dockerfile | 6 ------ .gitpod.yml | 25 ------------------------- README.md | 13 ------------- 3 files changed, 44 deletions(-) delete mode 100644 .gitpod.dockerfile delete mode 100644 .gitpod.yml diff --git a/.gitpod.dockerfile b/.gitpod.dockerfile deleted file mode 100644 index 33be68bd..00000000 --- a/.gitpod.dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM gitpod/workspace-full - -RUN sudo apt-get update && sudo rm -rf /var/lib/apt/lists/* - -ARG PYTHON_VERSION=3.14.6 -RUN pyenv install ${PYTHON_VERSION} && pyenv global ${PYTHON_VERSION} diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 5c3d3282..00000000 --- a/.gitpod.yml +++ /dev/null @@ -1,25 +0,0 @@ -image: - file: .gitpod.dockerfile -ports: - - port: 8080 - onOpen: open-preview -tasks: - - init: | - npm ci - npm run build - curl -sSL https://install.python-poetry.org | POETRY_VERSION=2.2.1 python - - poetry install --no-root - poetry run python manage.py migrate - poetry run python manage.py createcachetable - poetry run python manage.py buildfixtures - echo "from django.contrib.auth import get_user_model; get_user_model().objects.create_superuser('admin', '', 'changeme')" | poetry run python manage.py shell - echo "CSRF_TRUSTED_ORIGINS = ['https://*.gitpod.io']" >> apps/guide/settings/local.py - command: | - cd /workspace/guide - poetry run python manage.py runserver 0.0.0.0:8080 -github: - prebuilds: - pullRequestsFromForks: true -vscode: - extensions: - - ms-python.python diff --git a/README.md b/README.md index d2333e50..eef90ac9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ You can learn more about the documentation system [here](https://documentation.d # Table of Contents - [Installation](#installation) -- [Gitpod](#gitpod) - [Contributing](#contributing) - [Other Notes](#other-notes) @@ -83,18 +82,6 @@ Or both, in a single command: 4. Run the init script in the container: `make docker-init` 5. You should now have access to the project in your browser at `http://localhost:8000` -# Gitpod - -With Gitpod you can deploy a ready-to-code Wagtail Guide development environment with a single click to evaluate the code. - -[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/wagtail/guide) - -Steps: - -1. Click the `Open in Gitpod` button. -2. Relax: a development environment with an active Wagtail Guide site will be created for you. -3. Login at `/admin/` with username `admin` and password `changeme` - # Contributing If you're a Python or Django developer, fork the repo and join us. You'll find answers to many common new contributor questions in our [contributing guidelines](https://docs.wagtail.org/en/stable/contributing/index.html).