Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Scarf.sh monitoring #550

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,23 @@ services:
volumes:
- .:/app

pgadmin:
image: dpage/pgadmin4
container_name: pgadmin4_container
restart: always
ports:
- "8888:80"
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: strong-password
networks:
- backend
depends_on:
postgres:
condition: service_healthy
volumes:
- pgadmin-data:/var/lib/pgadmin

#ngrok:
#image: ngrok/ngrok:latest
#restart: always
Expand All @@ -261,6 +278,10 @@ services:
volumes:
- ./docs/:/app

volumes:
local_pgdata:
pgadmin-data:

networks:
frontend:
backend:
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- backend

api:
image: panoradotdev/backend-api:selfhosted
image: panora.docker.scarf.sh/panoradotdev/backend-api:selfhosted
environment:
DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:5432/${POSTGRES_DB}?ssl=false
DISTRIBUTION: ${DISTRIBUTION}
Expand Down Expand Up @@ -187,7 +187,7 @@ services:


magic-link-frontend:
image: panoradotdev/frontend-magic-links:selfhosted
image: panora.docker.scarf.sh/panoradotdev/frontend-magic-links:selfhosted
restart: always
ports:
- 81:80
Expand All @@ -199,7 +199,7 @@ services:
- frontend

webapp-next:
image: panoradotdev/frontend-webapp:selfhosted
image: panora.docker.scarf.sh/panoradotdev/frontend-webapp:selfhosted
environment:
NEXT_PUBLIC_DISTRIBUTION: ${DISTRIBUTION}
NEXT_PUBLIC_BACKEND_DOMAIN: ${NEXT_PUBLIC_BACKEND_DOMAIN}
Expand Down
3 changes: 2 additions & 1 deletion packages/api/swagger/extended_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ x-speakeasy-name-override:
- operationId: ^list.*
methodNameOverride: list
- operationId: ^new.*
methodNameOverride: create
methodNameOverride: create

Loading