Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: WordPress/WordPress
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: EP4/WordPress
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 15 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 27, 2018

  1. Test Gitpod config

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    30332c4 View commit details
  2. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    180859a View commit details
  3. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    24300f9 View commit details
  4. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    8ffb341 View commit details
  5. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    10f889b View commit details
  6. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    7ed168b View commit details
  7. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    b2a9ced View commit details
  8. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    9d53fda View commit details
  9. Gitpod

    samuelhautcoeur committed Nov 27, 2018
    Copy the full SHA
    4eb196d View commit details

Commits on Nov 28, 2018

  1. Gitpod

    samuelhautcoeur committed Nov 28, 2018
    Copy the full SHA
    5cb6b77 View commit details
  2. Gitpod

    samuelhautcoeur committed Nov 28, 2018
    Copy the full SHA
    e44abf7 View commit details
  3. Gitpod

    samuelhautcoeur committed Nov 28, 2018
    Copy the full SHA
    6b06672 View commit details
  4. Gitpod

    samuelhautcoeur committed Nov 28, 2018
    Copy the full SHA
    29f181a View commit details
  5. Gitpod

    samuelhautcoeur committed Nov 28, 2018
    Copy the full SHA
    01853f8 View commit details
  6. Gitpod

    samuelhautcoeur committed Nov 28, 2018
    Copy the full SHA
    956848e View commit details
Showing with 32 additions and 0 deletions.
  1. +6 −0 .gitpod.yml
  2. +16 −0 gitpod.Dockerfile
  3. +10 −0 node_modules/.yarn-integrity
6 changes: 6 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
image:
file: gitpod.Dockerfile
ports:
- port: 8080
tasks:
- command: yarn
16 changes: 16 additions & 0 deletions gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM gitpod/workspace-full

# install dependencies
USER root
RUN apt-get update \
&& apt-get install -y net-tools sudo libapache2-mod-php \
&& apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* \
&& echo "gitpod:gitpod" | chpasswd && adduser gitpod sudo \
&& sed -i "s/80/8080/g" /etc/apache2/sites-available/000-default.conf /etc/apache2/ports.conf \
&& sed -i "s/DocumentRoot \/var\/www\/html/DocumentRoot \/workspace/g" /etc/apache2/sites-available/000-default.conf /etc/apache2/ports.conf \
&& sed -i "s/www-data/gitpod/g" /etc/apache2/envvars \
&& mkdir -p /var/log/apache2 \
&& chown -R gitpod:gitpod /var/log/apache2 \
&& mkdir -p /var/run/apache2 \
&& chown -R gitpod:gitpod /var/run/apache2 \
&& usermod -a -G adm gitpod
10 changes: 10 additions & 0 deletions node_modules/.yarn-integrity

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