Add proper instructions to the readme

This commit is contained in:
zontreck 2024-11-21 21:31:10 -07:00
parent a5f4e405d2
commit 56b638fab3

View file

@ -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
```