mirror of
https://github.com/standardnotes/server
synced 2026-04-11 00:05:09 -04:00
Compare commits
28 Commits
@standardn
...
@standardn
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
31d2b8a092 | ||
|
|
65b9d74079 | ||
|
|
9f49643853 | ||
|
|
1721c9afe7 | ||
|
|
828d1e053e | ||
|
|
87d287c851 | ||
|
|
dd69fe2fcc | ||
|
|
c6c8691612 | ||
|
|
64a4c4f716 | ||
|
|
3f416f904b | ||
|
|
6e4042c79f | ||
|
|
162a63ae2b | ||
|
|
0d82819cba | ||
|
|
578ce0e74e | ||
|
|
532be7c358 | ||
|
|
d406272f07 | ||
|
|
9de3352885 | ||
|
|
8575d20f7b | ||
|
|
102d4b1e8a | ||
|
|
1a57c247b2 | ||
|
|
dbb0e4a974 | ||
|
|
5c02435ee4 | ||
|
|
0a1e555b13 | ||
|
|
be668d7d7a | ||
|
|
87e50ec941 | ||
|
|
6d7ca1b926 | ||
|
|
00bfaaa53d | ||
|
|
f939caf2d9 |
6
.github/ci.env
vendored
6
.github/ci.env
vendored
@@ -17,6 +17,9 @@ SYNCING_SERVER_LOG_LEVEL=debug
|
||||
FILES_SERVER_LOG_LEVEL=debug
|
||||
REVISIONS_SERVER_LOG_LEVEL=debug
|
||||
API_GATEWAY_LOG_LEVEL=debug
|
||||
COOKIE_DOMAIN=localhost
|
||||
COOKIE_SECURE=false
|
||||
COOKIE_PARTITIONED=false
|
||||
|
||||
MYSQL_DATABASE=standard_notes_db
|
||||
MYSQL_USER=std_notes_user
|
||||
@@ -30,3 +33,6 @@ VALET_TOKEN_SECRET=4b886819ebe1e908077c6cae96311b48a8416bd60cc91c03060e15bdf6b30
|
||||
SYNCING_SERVER_CONTENT_SIZE_TRANSFER_LIMIT=100000
|
||||
|
||||
HTTP_REQUEST_PAYLOAD_LIMIT_MEGABYTES=1
|
||||
|
||||
APPLICATION_VERSION_THRESHOLD_FOR_TOKEN_VERSION_2=0.0.0
|
||||
APPLICATION_VERSION_THRESHOLD_FOR_TOKEN_VERSION_3=0.0.0
|
||||
|
||||
113
.github/workflows/e2e-home-server.yml
vendored
113
.github/workflows/e2e-home-server.yml
vendored
@@ -27,7 +27,7 @@ jobs:
|
||||
snjs:
|
||||
image: standardnotes/snjs:${{ inputs.snjs_image_tag }}
|
||||
ports:
|
||||
- 9001:9001
|
||||
- 9001:9001
|
||||
cache:
|
||||
image: redis
|
||||
ports:
|
||||
@@ -43,64 +43,71 @@ jobs:
|
||||
MYSQL_PASSWORD: standardnotes
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
|
||||
- name: Install Dependencies
|
||||
run: yarn install --immutable
|
||||
- name: Install Dependencies
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Build
|
||||
run: yarn build
|
||||
- name: Build
|
||||
run: yarn build
|
||||
|
||||
- name: Copy dotenv file
|
||||
run: cp packages/home-server/.env.sample packages/home-server/.env
|
||||
- name: Copy dotenv file
|
||||
run: cp packages/home-server/.env.sample packages/home-server/.env
|
||||
|
||||
- name: Fill in env variables
|
||||
run: |
|
||||
sed -i "s/JWT_SECRET=/JWT_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/AUTH_JWT_SECRET=/AUTH_JWT_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/ENCRYPTION_SERVER_KEY=/ENCRYPTION_SERVER_KEY=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/PSEUDO_KEY_PARAMS_KEY=/PSEUDO_KEY_PARAMS_KEY=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/VALET_TOKEN_SECRET=/VALET_TOKEN_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
echo "ACCESS_TOKEN_AGE=4" >> packages/home-server/.env
|
||||
echo "REFRESH_TOKEN_AGE=10" >> packages/home-server/.env
|
||||
echo "REVISIONS_FREQUENCY=2" >> packages/home-server/.env
|
||||
echo "CONTENT_SIZE_TRANSFER_LIMIT=100000" >> packages/home-server/.env
|
||||
echo "HTTP_REQUEST_PAYLOAD_LIMIT_MEGABYTES=1" >> packages/home-server/.env
|
||||
echo "DB_HOST=localhost" >> packages/home-server/.env
|
||||
echo "DB_PORT=3306" >> packages/home-server/.env
|
||||
echo "DB_DATABASE=standardnotes" >> packages/home-server/.env
|
||||
echo "DB_SQLITE_DATABASE_PATH=homeserver.db" >> packages/home-server/.env
|
||||
echo "DB_USERNAME=standardnotes" >> packages/home-server/.env
|
||||
echo "DB_PASSWORD=standardnotes" >> packages/home-server/.env
|
||||
echo "DB_TYPE=${{ matrix.db_type }}" >> packages/home-server/.env
|
||||
echo "DB_DEBUG_LEVEL=all" >> packages/home-server/.env
|
||||
echo "REDIS_URL=redis://localhost:6379" >> packages/home-server/.env
|
||||
echo "CACHE_TYPE=${{ matrix.cache_type }}" >> packages/home-server/.env
|
||||
echo "FILES_SERVER_URL=http://localhost:3123" >> packages/home-server/.env
|
||||
echo "E2E_TESTING=true" >> packages/home-server/.env
|
||||
- name: Fill in env variables
|
||||
run: |
|
||||
sed -i "s/JWT_SECRET=/JWT_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/AUTH_JWT_SECRET=/AUTH_JWT_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/ENCRYPTION_SERVER_KEY=/ENCRYPTION_SERVER_KEY=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/PSEUDO_KEY_PARAMS_KEY=/PSEUDO_KEY_PARAMS_KEY=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
sed -i "s/VALET_TOKEN_SECRET=/VALET_TOKEN_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env
|
||||
echo "ACCESS_TOKEN_AGE=4" >> packages/home-server/.env
|
||||
echo "REFRESH_TOKEN_AGE=10" >> packages/home-server/.env
|
||||
echo "REVISIONS_FREQUENCY=2" >> packages/home-server/.env
|
||||
echo "CONTENT_SIZE_TRANSFER_LIMIT=100000" >> packages/home-server/.env
|
||||
echo "HTTP_REQUEST_PAYLOAD_LIMIT_MEGABYTES=1" >> packages/home-server/.env
|
||||
echo "DB_HOST=localhost" >> packages/home-server/.env
|
||||
echo "DB_PORT=3306" >> packages/home-server/.env
|
||||
echo "DB_DATABASE=standardnotes" >> packages/home-server/.env
|
||||
echo "DB_SQLITE_DATABASE_PATH=homeserver.db" >> packages/home-server/.env
|
||||
echo "DB_USERNAME=standardnotes" >> packages/home-server/.env
|
||||
echo "DB_PASSWORD=standardnotes" >> packages/home-server/.env
|
||||
echo "DB_TYPE=${{ matrix.db_type }}" >> packages/home-server/.env
|
||||
echo "DB_DEBUG_LEVEL=all" >> packages/home-server/.env
|
||||
echo "REDIS_URL=redis://localhost:6379" >> packages/home-server/.env
|
||||
echo "CACHE_TYPE=${{ matrix.cache_type }}" >> packages/home-server/.env
|
||||
echo "FILES_SERVER_URL=http://localhost:3123" >> packages/home-server/.env
|
||||
echo "E2E_TESTING=true" >> packages/home-server/.env
|
||||
echo "APPLICATION_VERSION_THRESHOLD_FOR_TOKEN_VERSION_2=0.0.0" >> packages/home-server/.env
|
||||
echo "APPLICATION_VERSION_THRESHOLD_FOR_TOKEN_VERSION_3=0.0.0" >> packages/home-server/.env
|
||||
|
||||
- name: Run Server
|
||||
run: nohup yarn workspace @standardnotes/home-server start > logs/output.log 2>&1 &
|
||||
env:
|
||||
PORT: 3123
|
||||
- name: Run Server
|
||||
run: nohup yarn workspace @standardnotes/home-server start > logs/output.log 2>&1 &
|
||||
env:
|
||||
PORT: 3123
|
||||
|
||||
- name: Wait for server to start
|
||||
run: for i in {1..30}; do curl -s http://localhost:3123/healthcheck && break || sleep 1; done
|
||||
- name: Wait for server to start
|
||||
run: for i in {1..30}; do curl -s http://localhost:3123/healthcheck && break || sleep 1; done
|
||||
|
||||
- name: Run E2E Test Suite
|
||||
run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
|
||||
- name: Run E2E Test Suite
|
||||
run: |
|
||||
TEST_URL="http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}"
|
||||
if [ "${{ matrix.cache_type }}" = "memory" ]; then
|
||||
TEST_URL="${TEST_URL}&skipSessionCooldownTests=true"
|
||||
fi
|
||||
yarn dlx mocha-headless-chrome@4.0.0 --timeout 3600000 --polling 1000 -a no-sandbox -a disable-setuid-sandbox -f "${TEST_URL}"
|
||||
|
||||
- name: Archive failed run logs
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: home-server-failure-logs-${{ inputs.suite }}-${{ matrix.db_type }}-${{ matrix.cache_type }}
|
||||
retention-days: 5
|
||||
path: |
|
||||
logs/output.log
|
||||
- name: Archive failed run logs
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: home-server-failure-logs-${{ inputs.suite }}-${{ matrix.db_type }}-${{ matrix.cache_type }}
|
||||
retention-days: 5
|
||||
path: |
|
||||
logs/output.log
|
||||
|
||||
68
.github/workflows/e2e-self-hosted.yml
vendored
68
.github/workflows/e2e-self-hosted.yml
vendored
@@ -25,46 +25,46 @@ jobs:
|
||||
snjs:
|
||||
image: standardnotes/snjs:${{ inputs.snjs_image_tag }}
|
||||
ports:
|
||||
- 9001:9001
|
||||
- 9001:9001
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
|
||||
- name: Install
|
||||
run: yarn install --immutable
|
||||
- name: Install
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Run Server
|
||||
run: docker compose -f docker-compose.ci.yml up -d
|
||||
env:
|
||||
DB_TYPE: mysql
|
||||
CACHE_TYPE: redis
|
||||
SERVICE_PROXY_TYPE: ${{ matrix.service_proxy_type }}
|
||||
- name: Run Server
|
||||
run: docker compose -f docker-compose.ci.yml up -d
|
||||
env:
|
||||
DB_TYPE: mysql
|
||||
CACHE_TYPE: redis
|
||||
SERVICE_PROXY_TYPE: ${{ matrix.service_proxy_type }}
|
||||
|
||||
- name: Output Server Logs to File
|
||||
run: docker compose -f docker-compose.ci.yml logs -f > logs/docker-compose.log 2>&1 &
|
||||
env:
|
||||
DB_TYPE: mysql
|
||||
CACHE_TYPE: redis
|
||||
SERVICE_PROXY_TYPE: ${{ matrix.service_proxy_type }}
|
||||
- name: Output Server Logs to File
|
||||
run: docker compose -f docker-compose.ci.yml logs -f > logs/docker-compose.log 2>&1 &
|
||||
env:
|
||||
DB_TYPE: mysql
|
||||
CACHE_TYPE: redis
|
||||
SERVICE_PROXY_TYPE: ${{ matrix.service_proxy_type }}
|
||||
|
||||
- name: Wait for server to start
|
||||
run: docker/is-available.sh http://localhost:3123 $(pwd)/logs
|
||||
- name: Wait for server to start
|
||||
run: docker/is-available.sh http://localhost:3123 $(pwd)/logs
|
||||
|
||||
- name: Run E2E Test Suite
|
||||
run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
|
||||
- name: Run E2E Test Suite
|
||||
run: yarn dlx mocha-headless-chrome@4.0.0 --timeout 3600000 --polling 1000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }}
|
||||
|
||||
- name: Archive failed run logs
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: self-hosted-failure-logs-${{ inputs.suite }}
|
||||
retention-days: 5
|
||||
path: |
|
||||
logs/*.err
|
||||
logs/*.log
|
||||
- name: Archive failed run logs
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: self-hosted-failure-logs-${{ inputs.suite }}
|
||||
retention-days: 5
|
||||
path: |
|
||||
logs/*.err
|
||||
logs/*.log
|
||||
|
||||
12
.github/workflows/pr.yml
vendored
12
.github/workflows/pr.yml
vendored
@@ -13,14 +13,14 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
key: ${{ runner.os }}-build-${{ github.sha }}
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
@@ -41,14 +41,14 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
key: ${{ runner.os }}-build-${{ github.sha }}
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
@@ -73,14 +73,14 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
key: ${{ runner.os }}-build-${{ github.sha }}
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
|
||||
44
.github/workflows/publish.yml
vendored
44
.github/workflows/publish.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
@@ -44,7 +44,7 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
@@ -76,7 +76,7 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
@@ -98,32 +98,30 @@ jobs:
|
||||
- name: Test
|
||||
run: yarn test
|
||||
|
||||
# e2e-base:
|
||||
# needs: build
|
||||
# name: E2E Base Suite
|
||||
# uses: standardnotes/server/.github/workflows/common-e2e.yml@main
|
||||
# with:
|
||||
# snjs_image_tag: 'latest'
|
||||
# suite: 'base'
|
||||
e2e-base:
|
||||
needs: build
|
||||
name: E2E Base Suite
|
||||
uses: standardnotes/server/.github/workflows/common-e2e.yml@main
|
||||
with:
|
||||
snjs_image_tag: 'latest'
|
||||
suite: 'base'
|
||||
|
||||
# e2e-vaults:
|
||||
# needs: build
|
||||
# name: E2E Vaults Suite
|
||||
# uses: standardnotes/server/.github/workflows/common-e2e.yml@main
|
||||
# with:
|
||||
# snjs_image_tag: 'latest'
|
||||
# suite: 'vaults'
|
||||
e2e-vaults:
|
||||
needs: build
|
||||
name: E2E Vaults Suite
|
||||
uses: standardnotes/server/.github/workflows/common-e2e.yml@main
|
||||
with:
|
||||
snjs_image_tag: 'latest'
|
||||
suite: 'vaults'
|
||||
|
||||
publish-self-hosting:
|
||||
# needs: [ test, lint, e2e-base, e2e-vaults ]
|
||||
needs: [ test, lint ]
|
||||
needs: [ test, lint, e2e-base, e2e-vaults ]
|
||||
name: Publish Self Hosting Docker Image
|
||||
uses: standardnotes/server/.github/workflows/common-self-hosting.yml@main
|
||||
secrets: inherit
|
||||
|
||||
publish-services:
|
||||
# needs: [ test, lint, e2e-base, e2e-vaults ]
|
||||
needs: [ test, lint ]
|
||||
needs: [ test, lint, e2e-base, e2e-vaults ]
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@@ -136,7 +134,7 @@ jobs:
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
packages/**/dist
|
||||
@@ -156,7 +154,7 @@ jobs:
|
||||
git_commit_gpgsign: true
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version-file: '.nvmrc'
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@eslint-community-eslint-utils-npm-4.9.0-fe45a08548-89b1eb3137.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-community-eslint-utils-npm-4.9.0-fe45a08548-89b1eb3137.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@eslint-community-regexpp-npm-4.12.1-ef4ab5217e-c08f1dd7dd.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-community-regexpp-npm-4.12.1-ef4ab5217e-c08f1dd7dd.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@eslint-config-array-npm-0.21.0-33589d8154-f5a499e074.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-config-array-npm-0.21.0-33589d8154-f5a499e074.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@eslint-config-helpers-npm-0.4.0-cf0547e4d3-d5fdbf927a.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-config-helpers-npm-0.4.0-cf0547e4d3-d5fdbf927a.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@eslint-core-npm-0.16.0-ceefcac859-3cea45971b.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-core-npm-0.16.0-ceefcac859-3cea45971b.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@eslint-eslintrc-npm-3.3.1-c3967fc0c3-cc240addba.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-eslintrc-npm-3.3.1-c3967fc0c3-cc240addba.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@eslint-js-npm-9.37.0-667758e3c2-2ead426ed4.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-js-npm-9.37.0-667758e3c2-2ead426ed4.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@eslint-object-schema-npm-2.1.6-a777ee59e8-266085c8d3.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-object-schema-npm-2.1.6-a777ee59e8-266085c8d3.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@eslint-plugin-kit-npm-0.4.0-98f470b681-2c37ca00e3.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-plugin-kit-npm-0.4.0-98f470b681-2c37ca00e3.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@humanfs-core-npm-0.19.1-e2e7aaeb6e-270d936be4.zip
vendored
Normal file
BIN
.yarn/cache/@humanfs-core-npm-0.19.1-e2e7aaeb6e-270d936be4.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@humanfs-node-npm-0.16.7-fa16bdb590-b3633d3dce.zip
vendored
Normal file
BIN
.yarn/cache/@humanfs-node-npm-0.16.7-fa16bdb590-b3633d3dce.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@humanwhocodes-retry-npm-0.4.3-a8d7ca1663-0b32cfd362.zip
vendored
Normal file
BIN
.yarn/cache/@humanwhocodes-retry-npm-0.4.3-a8d7ca1663-0b32cfd362.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-cookie-parser-npm-1.4.6-27287e1e43-b1bbb17bc4.zip
vendored
Normal file
BIN
.yarn/cache/@types-cookie-parser-npm-1.4.6-27287e1e43-b1bbb17bc4.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-estree-npm-1.0.8-2195bac6d6-25a4c16a67.zip
vendored
Normal file
BIN
.yarn/cache/@types-estree-npm-1.0.8-2195bac6d6-25a4c16a67.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-json-schema-npm-7.0.15-fd16381786-1a3c3e0623.zip
vendored
Normal file
BIN
.yarn/cache/@types-json-schema-npm-7.0.15-fd16381786-1a3c3e0623.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-semver-npm-7.7.0-0314bdb65a-ee4514c6c8.zip
vendored
Normal file
BIN
.yarn/cache/@types-semver-npm-7.7.0-0314bdb65a-ee4514c6c8.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-eslint-plugin-npm-8.46.0-e6114965b4-415afd894a.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-eslint-plugin-npm-8.46.0-e6114965b4-415afd894a.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-parser-npm-8.46.0-c44629050a-6838fde776.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-parser-npm-8.46.0-c44629050a-6838fde776.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-project-service-npm-8.46.0-85a4b9bb9c-de11af23ae.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-project-service-npm-8.46.0-85a4b9bb9c-de11af23ae.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-scope-manager-npm-8.46.0-fd8edaba78-ed85abd08c.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-scope-manager-npm-8.46.0-fd8edaba78-ed85abd08c.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-tsconfig-utils-npm-8.46.0-8919c1f746-e78a66a854.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-tsconfig-utils-npm-8.46.0-8919c1f746-e78a66a854.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-type-utils-npm-8.46.0-dbfff922bb-5405b71b91.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-type-utils-npm-8.46.0-dbfff922bb-5405b71b91.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-types-npm-8.46.0-b013400d3e-0118b0dd59.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-types-npm-8.46.0-b013400d3e-0118b0dd59.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-typescript-estree-npm-8.46.0-0b10d4388a-61053bd0c3.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-typescript-estree-npm-8.46.0-0b10d4388a-61053bd0c3.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-utils-npm-8.46.0-a7d3832f43-4e0da60de3.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-utils-npm-8.46.0-a7d3832f43-4e0da60de3.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@typescript-eslint-visitor-keys-npm-8.46.0-7d793afea5-37e6145b6a.zip
vendored
Normal file
BIN
.yarn/cache/@typescript-eslint-visitor-keys-npm-8.46.0-7d793afea5-37e6145b6a.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/acorn-npm-8.15.0-0764cf600e-77f2de5051.zip
vendored
Normal file
BIN
.yarn/cache/acorn-npm-8.15.0-0764cf600e-77f2de5051.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/ansis-npm-3.17.0-eca2c0d0c2-6fd6bc4d11.zip
vendored
Normal file
BIN
.yarn/cache/ansis-npm-3.17.0-eca2c0d0c2-6fd6bc4d11.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/axios-npm-1.6.7-d7b9974d1b-a1932b089e.zip
vendored
Normal file
BIN
.yarn/cache/axios-npm-1.6.7-d7b9974d1b-a1932b089e.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/braces-npm-3.0.3-582c14023c-fad11a0d46.zip
vendored
Normal file
BIN
.yarn/cache/braces-npm-3.0.3-582c14023c-fad11a0d46.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/cookie-npm-0.4.1-cc5e2ebb42-0f2defd60a.zip
vendored
Normal file
BIN
.yarn/cache/cookie-npm-0.4.1-cc5e2ebb42-0f2defd60a.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/cookie-parser-npm-1.4.6-a68f84d02a-1e5a63aa82.zip
vendored
Normal file
BIN
.yarn/cache/cookie-parser-npm-1.4.6-a68f84d02a-1e5a63aa82.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/cross-spawn-npm-7.0.6-264bddf921-0d52657d7a.zip
vendored
Normal file
BIN
.yarn/cache/cross-spawn-npm-7.0.6-264bddf921-0d52657d7a.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/dayjs-npm-1.11.18-76d3212973-7d29a90834.zip
vendored
Normal file
BIN
.yarn/cache/dayjs-npm-1.11.18-76d3212973-7d29a90834.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/debug-npm-4.4.3-0105c6123a-9ada3434ea.zip
vendored
Normal file
BIN
.yarn/cache/debug-npm-4.4.3-0105c6123a-9ada3434ea.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/dedent-npm-1.7.0-ec8ff53a59-c902f3e7e8.zip
vendored
Normal file
BIN
.yarn/cache/dedent-npm-1.7.0-ec8ff53a59-c902f3e7e8.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/dotenv-npm-16.6.1-01334288ea-1d18971443.zip
vendored
Normal file
BIN
.yarn/cache/dotenv-npm-16.6.1-01334288ea-1d18971443.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/eslint-npm-9.37.0-cee8f56a3f-c7530470c9.zip
vendored
Normal file
BIN
.yarn/cache/eslint-npm-9.37.0-cee8f56a3f-c7530470c9.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/eslint-scope-npm-8.4.0-8ed12feb40-e8e611701f.zip
vendored
Normal file
BIN
.yarn/cache/eslint-scope-npm-8.4.0-8ed12feb40-e8e611701f.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/eslint-visitor-keys-npm-4.2.1-435d5be22a-3ee00fc6a7.zip
vendored
Normal file
BIN
.yarn/cache/eslint-visitor-keys-npm-4.2.1-435d5be22a-3ee00fc6a7.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/espree-npm-10.4.0-9633b00e55-9b355b32db.zip
vendored
Normal file
BIN
.yarn/cache/espree-npm-10.4.0-9633b00e55-9b355b32db.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/esquery-npm-1.6.0-16fee31531-c587fb8ec9.zip
vendored
Normal file
BIN
.yarn/cache/esquery-npm-1.6.0-16fee31531-c587fb8ec9.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/fast-glob-npm-3.3.3-2a653be532-dcc6432b26.zip
vendored
Normal file
BIN
.yarn/cache/fast-glob-npm-3.3.3-2a653be532-dcc6432b26.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/file-entry-cache-npm-8.0.0-5b09d19a83-afe55c4de4.zip
vendored
Normal file
BIN
.yarn/cache/file-entry-cache-npm-8.0.0-5b09d19a83-afe55c4de4.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/fill-range-npm-7.1.1-bf491486db-a7095cb39e.zip
vendored
Normal file
BIN
.yarn/cache/fill-range-npm-7.1.1-bf491486db-a7095cb39e.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/flat-cache-npm-4.0.1-12bf2455f7-58ce851d90.zip
vendored
Normal file
BIN
.yarn/cache/flat-cache-npm-4.0.1-12bf2455f7-58ce851d90.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/flatted-npm-3.3.3-ca455563b2-8c96c02fbe.zip
vendored
Normal file
BIN
.yarn/cache/flatted-npm-3.3.3-ca455563b2-8c96c02fbe.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/follow-redirects-npm-1.15.5-9d14db76ca-d467f13c1c.zip
vendored
Normal file
BIN
.yarn/cache/follow-redirects-npm-1.15.5-9d14db76ca-d467f13c1c.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/glob-npm-10.4.5-8c63175f05-698dfe1182.zip
vendored
Normal file
BIN
.yarn/cache/glob-npm-10.4.5-8c63175f05-698dfe1182.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/globals-npm-14.0.0-5fc3d8d5da-03939c8af9.zip
vendored
Normal file
BIN
.yarn/cache/globals-npm-14.0.0-5fc3d8d5da-03939c8af9.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/ignore-npm-7.0.5-dea34ee430-f134b96a4d.zip
vendored
Normal file
BIN
.yarn/cache/ignore-npm-7.0.5-dea34ee430-f134b96a4d.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/jackspeak-npm-3.4.3-546bfad080-96f8786eaa.zip
vendored
Normal file
BIN
.yarn/cache/jackspeak-npm-3.4.3-546bfad080-96f8786eaa.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/json-buffer-npm-3.0.1-f8f6d20603-8287615452.zip
vendored
Normal file
BIN
.yarn/cache/json-buffer-npm-3.0.1-f8f6d20603-8287615452.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/keyv-npm-4.5.4-4c8e2cf7f7-167eb6ef64.zip
vendored
Normal file
BIN
.yarn/cache/keyv-npm-4.5.4-4c8e2cf7f7-167eb6ef64.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/lru-cache-npm-10.4.3-30c10b861a-e6e9026736.zip
vendored
Normal file
BIN
.yarn/cache/lru-cache-npm-10.4.3-30c10b861a-e6e9026736.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/micromatch-npm-4.0.8-c9570e4aca-6bf2a01672.zip
vendored
Normal file
BIN
.yarn/cache/micromatch-npm-4.0.8-c9570e4aca-6bf2a01672.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/minimatch-npm-9.0.5-9aa93d97fa-dd6a8927b0.zip
vendored
Normal file
BIN
.yarn/cache/minimatch-npm-9.0.5-9aa93d97fa-dd6a8927b0.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/minipass-npm-7.1.2-3a5327d36d-c25f0ee819.zip
vendored
Normal file
BIN
.yarn/cache/minipass-npm-7.1.2-3a5327d36d-c25f0ee819.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/mysql2-npm-3.9.7-8fe89e50ac-7f43b17cc0.zip
vendored
Normal file
BIN
.yarn/cache/mysql2-npm-3.9.7-8fe89e50ac-7f43b17cc0.zip
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user