forked from pocketbase/pocketbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6aabd06
commit 19d2d7c
Showing
873 changed files
with
260 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
135 changes: 135 additions & 0 deletions
135
.github/workflows/1_0_build_image_and_push_to_manifest.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
name: build_and_push_to_manifest | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
# tags: | ||
# - '*.*.*' | ||
pull_request: | ||
workflow_dispatch: | ||
env: | ||
GITLAB_REGISTRY: registry.gitlab.com/target-digital-transformation/devops | ||
DEFAULT_MOULE: true ## true, ingore, default is true | ||
SECOND_MODULE: null ## null, ignore, ${MODULE_NAME}, default is null | ||
SECOND_MODULE_FOR_COMMON: "common2 common3" | ||
THIRD_MODULE: null | ||
THIRD_MODULE_FOR_COMMON: "common4 common5" | ||
|
||
jobs: | ||
build_and_push_image: | ||
name: build and push docker image | ||
if: contains(github.ref, 'refs/heads/') | ||
# if: contains(github.ref, 'refs/tags/') | ||
runs-on: [self-hosted, linux, k8s] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '>=1.22.5' | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.11.0 | ||
|
||
- name: Build Admin dashboard UI | ||
run: npm --prefix=./ui ci && npm --prefix=./ui run build | ||
|
||
- name: Run tests | ||
run: go test ./... | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v3 | ||
with: | ||
distribution: goreleaser | ||
version: latest | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build | ||
run: | | ||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o main main.go | ||
- name: Docker image name env | ||
run: | | ||
echo "GITLAB_IMAGE_NAME=${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${GITHUB_SHA::8}" | ||
echo "GITLAB_IMAGE_NAME=${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${GITHUB_SHA::8}" >> $GITHUB_ENV | ||
echo "GITLAB_IMAGE_NAME_SECOND_MODULE=${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${GITHUB_SHA::8}" | ||
echo "GITLAB_IMAGE_NAME_SECOND_MODULE=${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${GITHUB_SHA::8}" >> $GITHUB_ENV | ||
echo "GITLAB_IMAGE_NAME_THIRD_MODULE=${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:${GITHUB_SHA::8}" | ||
echo "GITLAB_IMAGE_NAME_THIRD_MODULE=${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:${GITHUB_SHA::8}" >> $GITHUB_ENV | ||
- name: Build docker image | ||
# permission change due to: actions/upload-artifact#38 | ||
# https://github.com/gliderlabs/docker-alpine/issues/307#issuecomment-357247928 | ||
run: | | ||
if [ "$DEFAULT_MOULE" != "ignore" ] ;then | ||
docker build -f Dockerfile -t $GITLAB_IMAGE_NAME . | ||
fi | ||
if [ "$SECOND_MODULE" != "ignore" ] && [ "$SECOND_MODULE" != "null" ] && [ "$SECOND_MODULE" != "" ];then | ||
echo "-----build the SECOND_MODULE docker image----" | ||
docker build -f- -t $GITLAB_IMAGE_NAME_SECOND_MODULE . <<EOF | ||
FROM alpine:3.14 | ||
EOF | ||
fi | ||
if [ "$THIRD_MODULE" != "ignore" ] && [ "$THIRD_MODULE" != "null" ] && [ "$THIRD_MODULE" != "" ];then | ||
echo "-----build the THIRD_MODULE docker image----" | ||
docker build -f- -t $GITLAB_IMAGE_NAME_THIRD_MODULE . <<EOF | ||
FROM alpine:3.14 | ||
EOF | ||
fi | ||
- name: Push image to gitlab registry | ||
run: | | ||
echo ${{ secrets.GITLAB_CR_PAT }} | docker login registry.gitlab.com -u ${{ secrets.GITLAB_CR_USER }} --password-stdin | ||
if [ "$DEFAULT_MOULE" != "ignore" ] ;then | ||
echo "docker push $GITLAB_IMAGE_NAME" | ||
docker push $GITLAB_IMAGE_NAME | ||
fi | ||
if [ "$SECOND_MODULE" != "ignore" ] && [ "$SECOND_MODULE" != "null" ] && [ "$SECOND_MODULE" != "" ];then | ||
docker push $GITLAB_IMAGE_NAME_SECOND_MODULE | ||
fi | ||
if [ "$THIRD_MODULE" != "ignore" ] && [ "$THIRD_MODULE" != "null" ] && [ "$THIRD_MODULE" != "" ];then | ||
docker push $GITLAB_IMAGE_NAME_THIRD_MODULE | ||
fi | ||
push_to_manifest: | ||
runs-on: [self-hosted, linux, k8s] | ||
name: push to manifest | ||
if: ${{ github.ref != 'tag' }} | ||
needs: | ||
- build_and_push_image | ||
steps: | ||
- name: Checkout manifest repo | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: tespkg/tes_manifests | ||
token: ${{ secrets.TES_MANIFEST_TOKEN }} | ||
|
||
# - name: Set up tools | ||
# uses: tespkg/action@set_up_tools | ||
|
||
# - name: Push to dev | ||
# ## your main branch | ||
# ## push the image name to env-dev/${{ github.repository }} | ||
# if: ${{ github.ref == 'refs/heads/develop' }} | ||
# uses: tespkg/action@deploy_to_dev | ||
# with: | ||
# ALIAS_GITHUB_REPOSITORY: ${{ github.repository }} | ||
# TES_ENV: dev | ||
|
||
- name: Push to mixed | ||
## push the image name to env-mixed/${{ github.repository }}-${branch} | ||
## fill your spec branch | ||
if: ${{ github.ref == 'REPLACEME' }} | ||
uses: tespkg/action@deploy_to_dev | ||
with: | ||
ALIAS_GITHUB_REPOSITORY: ${{ github.repository }} | ||
TES_ENV: mixed |
125 changes: 125 additions & 0 deletions
125
.github/workflows/2_0_push_chart_and_sync_to_server.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
name: push helm chart | ||
|
||
env: | ||
GITLAB_REGISTRY: registry.gitlab.com/target-digital-transformation/devops | ||
DEFAULT_MOULE: true ## true, ingore, default is true | ||
SECOND_MODULE: "null" ## null, ignore, ${MODULE_NAME}, default is null | ||
SECOND_MODULE_FOR_COMMON: "common2 common3" | ||
THIRD_MODULE: ignore | ||
THIRD_MODULE_FOR_COMMON: "common4 common5" | ||
# TES_MANIFEST_TEMPOARAY: ${{ secrets.TES_MANIFEST_TEMPOARAY }} | ||
ALIAS_GITHUB_REPOSITORY: ${{ github.repository }} | ||
HELM_REPO: https://chartmuseum.dev.meeraspace.com/ | ||
HELM_USER: ${{ secrets.HELM_USER }} | ||
HELM_PASSWORD: ${{ secrets.HELM_PASSWORD }} | ||
TES_ENV: dev | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
|
||
jobs: | ||
tag_image: | ||
runs-on: self-hosted | ||
name: tag and push image | ||
if: contains(github.ref, 'refs/tags/') | ||
# if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- id: tag_image | ||
name: Tag and Push image to gitlab registry | ||
run: | | ||
echo ${{ secrets.GITLAB_CR_PAT }} | docker login registry.gitlab.com -u ${{ secrets.GITLAB_CR_USER }} --password-stdin | ||
IMAGE_TAG=`echo ${GITHUB_REF} | awk -F "/" '{print $3}'` | ||
if [[ ${IMAGE_TAG} == v* ]]; then IMAGE_TAG=`echo ${IMAGE_TAG:1}`; fi | ||
echo ${IMAGE_TAG} | ||
if [ "$DEFAULT_MOULE" != "ignore" ] ; | ||
then | ||
docker pull ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${GITHUB_SHA::8} | ||
docker tag ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${GITHUB_SHA::8} ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${IMAGE_TAG} | ||
docker tag ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${GITHUB_SHA::8} ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:latest | ||
docker push ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY} | ||
docker push ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}:${IMAGE_TAG} | ||
fi | ||
if [ "$SECOND_MODULE" != "ignore" ] && [ "$SECOND_MODULE" != "null" ] && [ "$SECOND_MODULE" != "" ] ; | ||
then | ||
docker pull ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${GITHUB_SHA::8} | ||
docker tag ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${GITHUB_SHA::8} ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${IMAGE_TAG} | ||
docker tag ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${GITHUB_SHA::8} ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:latest | ||
docker push ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE} | ||
docker push ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${SECOND_MODULE}:${IMAGE_TAG} | ||
fi | ||
if [ "$THIRD_MODULE" != "ignore" ] && [ "$THIRD_MODULE" != "null" ] && [ "$THIRD_MODULE" != "" ] ; | ||
then | ||
docker pull ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:${GITHUB_SHA::8} | ||
docker tag ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:${GITHUB_SHA::8} ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:${IMAGE_TAG} | ||
docker tag ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:${GITHUB_SHA::8} ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE}:latest | ||
docker push ${GITLAB_REGISTRY}/${GITHUB_REPOSITORY}-${THIRD_MODULE} | ||
fi | ||
push_chart_to_helm_repo: | ||
runs-on: self-hosted | ||
name: push chart to helm repo | ||
if: contains(github.ref, 'refs/tags/') | ||
needs: | ||
- tag_image | ||
steps: | ||
- name: Checkout source repo | ||
if: contains(github.ref, 'mixedmanual') | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get branch Name | ||
if: contains(github.ref, 'mixedmanual') | ||
run: | | ||
git log --oneline --decorate | head -1 | ||
BRANCH_NAME=`git log --oneline --decorate | head -1 | awk -Forigin/ '{print $2}' | awk -F')' '{print $1}'` | ||
echo "BRANCH_NAME: ${BRANCH_NAME}" | ||
echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV | ||
- name: Checkout manifest repo | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: tespkg/tes_manifests | ||
token: ${{ secrets.TES_MANIFEST_TOKEN }} | ||
|
||
- name: Set up tools | ||
uses: tespkg/action@set_up_tools | ||
|
||
- name: push_incubator_chart | ||
uses: tespkg/action@push_incubator_chart | ||
with: | ||
ALIAS_GITHUB_REPOSITORY: ${{ github.repository }} | ||
|
||
sync_helm_chart_to_env: | ||
runs-on: self-hosted | ||
name: sync helm chart to env | ||
if: contains(github.ref, 'refs/tags/') | ||
needs: | ||
- push_chart_to_helm_repo | ||
steps: | ||
- name: Checkout manifest repo | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: tespkg/tes_manifests | ||
token: ${{ secrets.TES_MANIFEST_TOKEN }} | ||
|
||
# - name: Set up tools | ||
# uses: tespkg/action@set_up_tools | ||
|
||
- name: auto sync to env-test | ||
uses: tespkg/action@sync_helm_chart | ||
with: | ||
ALIAS_GITHUB_REPOSITORY: ${{ github.repository }} | ||
TES_ENV: test | ||
|
||
# - name: auto sync to env-test2 | ||
# uses: tespkg/action@sync_helm_chart | ||
# with: | ||
# ALIAS_GITHUB_REPOSITORY: ${{ github.repository }} | ||
# TES_ENV: test2 |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725284690_created_about.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725437785_created_specializations.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725444381_created_organizational_chart.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725445009_created_minister_speech.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725447492_created_ministry_news.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725453191_created_versions.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725453760_created_acoustics.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725454298_created_information_designs.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725455712_created_topics.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725455778_created_marketing.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725524228_created_sso.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725529238_created_sectors.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725878135_add_auth_provider.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725884497_created_homepage.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1725886807_created_visuals.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1726059692_created_rules.js
100644 → 100755
Empty file.
Empty file modified
0
examples/base/pb_migrations_mafwr_cms/1726496004_created_attachments.js
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
migrations/1701496825_allow_single_oauth2_provider_in_multiple_auth_collections.go
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
tests/data/storage/9n89pl5vkct6330/la4y2w4o98acwuj/300_uh_lkx91_hvb_Da8K5pl069.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/9n89pl5vkct6330/la4y2w4o98acwuj/300_uh_lkx91_hvb_Da8K5pl069.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
.../thumbs_300_uh_lkx91_hvb_Da8K5pl069.png/100x100_300_uh_lkx91_hvb_Da8K5pl069.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...cwuj/thumbs_300_uh_lkx91_hvb_Da8K5pl069.png/100x100_300_uh_lkx91_hvb_Da8K5pl069.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...s/data/storage/9n89pl5vkct6330/qjeql998mtp1azp/logo_vcf_jjg5_tah_9MtIHytOmZ.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/9n89pl5vkct6330/qjeql998mtp1azp/logo_vcf_jjg5_tah_9MtIHytOmZ.svg.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/_pb_users_auth_/4q1xlclmfloku33/300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/_pb_users_auth_/4q1xlclmfloku33/300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...b_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/0x50_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...e/_pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/0x50_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...sers_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/100x100_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/100x100_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...b_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x0_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...e/_pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x0_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
..._users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
.../_pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50b_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
..._pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50b_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50f_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
..._pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50f_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50t_300_1SEi6Q6U72.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
..._pb_users_auth_/4q1xlclmfloku33/thumbs_300_1SEi6Q6U72.png/70x50t_300_1SEi6Q6U72.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/_pb_users_auth_/oap640cot4yru2s/test_kfd2wYLxkz.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/_pb_users_auth_/oap640cot4yru2s/test_kfd2wYLxkz.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/300_WlbFWSGmW9.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/300_WlbFWSGmW9.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/logo_vcfJJG5TAh.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/logo_vcfJJG5TAh.svg.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_MaWC6mWyrP.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_MaWC6mWyrP.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_QZFjKjXchk.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_QZFjKjXchk.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_d61b33QdDU.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_d61b33QdDU.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_tC1Yc87DfC.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/84nmscqy84lsi1t/test_tC1Yc87DfC.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
...4bux7wo113/84nmscqy84lsi1t/thumbs_300_WlbFWSGmW9.png/100x100_300_WlbFWSGmW9.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...smn24bux7wo113/84nmscqy84lsi1t/thumbs_300_WlbFWSGmW9.png/100x100_300_WlbFWSGmW9.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/al1h9ijdeojtsjy/300_Jsjq7RdBgA.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/wsmn24bux7wo113/al1h9ijdeojtsjy/300_Jsjq7RdBgA.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
...4bux7wo113/al1h9ijdeojtsjy/thumbs_300_Jsjq7RdBgA.png/100x100_300_Jsjq7RdBgA.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...smn24bux7wo113/al1h9ijdeojtsjy/thumbs_300_Jsjq7RdBgA.png/100x100_300_Jsjq7RdBgA.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wzlqyes4orhoygb/7nwo8tuiatetxdm/test_JnXeKEwgwr.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wzlqyes4orhoygb/7nwo8tuiatetxdm/test_JnXeKEwgwr.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wzlqyes4orhoygb/lcl9d87w22ml6jy/300_UhLKX91HVb.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
tests/data/storage/wzlqyes4orhoygb/lcl9d87w22ml6jy/300_UhLKX91HVb.png.attrs
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wzlqyes4orhoygb/lcl9d87w22ml6jy/test_FLurQTgrY8.txt
100644 → 100755
Empty file.
Empty file modified
0
tests/data/storage/wzlqyes4orhoygb/lcl9d87w22ml6jy/test_FLurQTgrY8.txt.attrs
100644 → 100755
Empty file.
Empty file modified
0
...es4orhoygb/lcl9d87w22ml6jy/thumbs_300_UhLKX91HVb.png/100x100_300_UhLKX91HVb.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified
0
...zlqyes4orhoygb/lcl9d87w22ml6jy/thumbs_300_UhLKX91HVb.png/100x100_300_UhLKX91HVb.png.attrs
100644 → 100755
Empty file.
Oops, something went wrong.