From f184dfb87109f7796d09e4161ee0afc2a17cf11b Mon Sep 17 00:00:00 2001 From: Robbie Date: Tue, 12 Mar 2024 09:31:39 +1100 Subject: [PATCH] Add Tunnelmole as a FOSS tunneling tool for the form_app sample (#2199) This is a simple PR which adds [tunnelmole](https://tunnelmole.com/docs) as a free and open source tunneling option for the form_app sample. --- form_app/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/form_app/README.md b/form_app/README.md index 0c981e736..c63a49c7e 100644 --- a/form_app/README.md +++ b/form_app/README.md @@ -20,9 +20,11 @@ A form that uses AutofillGroup to auto-fill the users name, email, and address. In order to use Autofill in a browser, your app needs to be hosted with HTTPS. If you would like to test locally, you can build the app in release mode -(`flutter run -d chrome --release --web-port=5000`) and use -[ngrok](https://ngrok.com/) to create an HTTPS url for your local app (`ngrok -http 5000`) +(`flutter run -d chrome --release --web-port=5000`). + +Then use [tunnelmole](https://tunnelmole.com/docs), an open source tunneling +tool or [ngrok](https://ngrok.com/), a popular closed source tunneling tool +to create an HTTPS url for your local app (`tmole 5000` or `ngrok http 5000`). ## Validation [*lib/src/validation.dart*](lib/src/validation.dart)