Skip to content

Commit 4d297b4

Browse files
committed
Fix: Update missing part of code
1 parent df880c4 commit 4d297b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

localhost_testing.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ Add the script below to your application instance to register your `ngrok` confi
8383

8484
app/__init__.py: Register your ngrok configuration
8585
```python
86-
if app.config['START_NGROK']
86+
if app.config['START_NGROK']:
87+
start_ngrok()
8788
```
8889

8990
Since we want this variable to be set to True, such that when the application starts it creates a tunnel for us, we will update our envrionment variables to include it:

0 commit comments

Comments
 (0)