Skip to content

Commit

Permalink
Merge pull request #550 from panoratech/scarf-tracking
Browse files Browse the repository at this point in the history
✨ Scarf.sh monitoring
  • Loading branch information
rflihxyz authored Jul 3, 2024
2 parents 7a24a51 + b695740 commit caa7db7
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
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

0 comments on commit caa7db7

Please sign in to comment.