diff --git a/nim_bot/README.md b/nim_bot/README.md new file mode 100644 index 0000000..778ee4c --- /dev/null +++ b/nim_bot/README.md @@ -0,0 +1,7 @@ +# TaxenHeimer Discord Bot +Discord bot written in nim to help with easy query commands on the database + +## Running +``` +nim c src/nim_bot.nim +``` \ No newline at end of file diff --git a/nimscan/README.md b/nimscan/README.md new file mode 100644 index 0000000..96c9c82 --- /dev/null +++ b/nimscan/README.md @@ -0,0 +1,7 @@ +# TaxenHeimer Server Scanner +The project core, the program that is used to scan port on random IPs, written in nim for faster results. runs on 300 threads + +## Running +``` +nim c scanner.nim +``` \ No newline at end of file diff --git a/nimscan/config.nims b/nimscan/config.nims index 9d57ecf..f4b1689 100644 --- a/nimscan/config.nims +++ b/nimscan/config.nims @@ -1 +1,3 @@ ---threads:on \ No newline at end of file +--threads:on +switch("d", "release") +switch("d", "ssl") \ No newline at end of file diff --git a/nimscan/IPgen.nim b/nimscan/scanner.nim similarity index 100% rename from nimscan/IPgen.nim rename to nimscan/scanner.nim diff --git a/server/README.md b/server/README.md new file mode 100644 index 0000000..454ba00 --- /dev/null +++ b/server/README.md @@ -0,0 +1,14 @@ +# TaxenHeimer Backend Server +Backend server for TaxenHeimer written in Node.JS + +## Running it +Test environment +``` +npm run test +``` +Release
+(Uses bytenode to compile and makes scripts a bit faster) +``` +npm run compile +npm run runc +``` \ No newline at end of file