From 56b638fab3f83deac39710f0d335736b1c9dcdca Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 21 Nov 2024 21:31:10 -0700 Subject: [PATCH] Add proper instructions to the readme --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3816eca..58052d5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ -A sample command-line application with an entrypoint in `bin/`, library code -in `lib/`, and example unit test in `test/`. +## AWS Parser + +This is a simple program designed to download the AWS IP Range list and output two text files compatible with PFSense + +## Compilation + +The simplest way is `chmod +x build.sh && ./build.sh` + +Or if you prefer to be complicated... +``` +dart compile exe -o out/awsparser bin/awsparser.dart +```