Skip to content

Commit

Permalink
✨ Feat: Ngrok for debugging webhooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachid F committed Jun 10, 2024
1 parent 5c604a2 commit 9387be6
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: moving-eagle-singularly.ngrok-free.appngrok

0 comments on commit 9387be6

Please sign in to comment.