-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into gs/gdrive-create-discussion-relations
- Loading branch information
Showing
98 changed files
with
6,190 additions
and
1,243 deletions.
There are no files selected for viewing
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,13 @@ | ||
MINIO_ROOT_USER=pubpub-minio-admin | ||
MINIO_ROOT_PASSWORD=pubpub-minio-admin | ||
|
||
ASSETS_BUCKET_NAME=assets.v7.pubpub.org | ||
ASSETS_UPLOAD_KEY=pubpubuser | ||
ASSETS_UPLOAD_SECRET_KEY=pubpubpass | ||
ASSETS_REGION=us-east-1 | ||
|
||
POSTGRES_PORT=54322 | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=postgres | ||
POSTGRES_DB=postgres | ||
|
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,40 @@ | ||
MINIO_ROOT_USER=pubpub-minio-admin | ||
MINIO_ROOT_PASSWORD=pubpub-minio-admin | ||
|
||
ASSETS_BUCKET_NAME=byron.v7.pubpub.org | ||
ASSETS_UPLOAD_KEY=pubpubuserrr | ||
ASSETS_UPLOAD_SECRET_KEY=pubpubpass | ||
ASSETS_REGION=us-east-1 | ||
ASSETS_STORAGE_ENDPOINT=http://localhost:9000 | ||
|
||
POSTGRES_PORT=54323 | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=postgres | ||
POSTGRES_DB=postgres | ||
POSTGRES_HOST=db | ||
|
||
# annoying duplication because jobs uses this version | ||
PGHOST=db | ||
PGPORT=5432 | ||
PGUSER=postgres | ||
PGPASSWORD=postgres | ||
PGDATABASE=postgres | ||
|
||
# this needs to be db:5432 bc that's what it is in the app-network | ||
# if you are running this from outside the docker network, you need to use | ||
# @localhost:${POSTGRES_PORT} instead | ||
DATABASE_URL=postgresql://postgres:postgres@db:5432/postgres | ||
|
||
|
||
JWT_SECRET=xxx | ||
MAILGUN_SMTP_PASSWORD=xxx | ||
GCLOUD_KEY_FILE=xxx | ||
|
||
MAILGUN_SMTP_HOST=inbucket | ||
MAILGUN_SMTP_PORT=2500 | ||
# this needs to be localhost:54324 instead of inbucket:9000 bc we are almost always running the integration tests from outside the docker network | ||
INBUCKET_URL=http://localhost:54324 | ||
MAILGUN_SMTP_USERNAME=omitted | ||
OTEL_SERVICE_NAME=core.core | ||
PUBPUB_URL=http://localhost:3000 | ||
API_KEY=xxx |
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,55 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json | ||
# Dependabot configuration file | ||
# See documentation: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
# package.json + pnpm catalog updates | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- "dependencies" | ||
- "npm" | ||
commit-message: | ||
prefix: "npm" | ||
include: "scope" | ||
# group all minor and patch updates together | ||
groups: | ||
minor-patch-dependencies: | ||
patterns: | ||
- "*" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
|
||
# GitHub Actions updates | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
open-pull-requests-limit: 5 | ||
labels: | ||
- "dependencies" | ||
- "github-actions" | ||
commit-message: | ||
prefix: "github-actions" | ||
include: "scope" | ||
|
||
# docker updates | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
open-pull-requests-limit: 5 | ||
labels: | ||
- "dependencies" | ||
- "docker" | ||
commit-message: | ||
prefix: "docker" | ||
include: "scope" |
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -69,4 +69,6 @@ core/supabase/.temp | |
*storybook.log | ||
storybook-static | ||
|
||
./playwright | ||
./playwright | ||
|
||
.local_data |
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
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
Oops, something went wrong.