Skip to content

Commit

Permalink
Merge pull request #491 from panoratech/ngrok
Browse files Browse the repository at this point in the history
✨ Feat: Ngrok for debugging webhooks
  • Loading branch information
rflihxyz authored Jun 10, 2024
2 parents 5c604a2 + 88002fc commit ac5c926
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,19 @@ services:
- frontend
volumes:
- .:/app

ngrok:
image: ngrok/ngrok:latest
restart: always
command:
- "start"
- "--all"
- "--config"
- "/etc/ngrok.yml"
volumes:
- ./ngrok.yml:/etc/ngrok.yml
ports:
- 4040:4040

docs:
build:
Expand Down
10 changes: 10 additions & 0 deletions ngrok.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
authtoken: YOUR_NGROK_KEY_HERE
log_level: debug
log: stdout

tunnels:
api-tunnel:
proto: http
addr: 3000
domain: your_ngrok_domain_here

0 comments on commit ac5c926

Please sign in to comment.