added informations

This commit is contained in:
TaxMachine 2022-07-26 01:37:50 -04:00
parent 5927e767aa
commit ea538e5191
5 changed files with 31 additions and 1 deletions

7
nim_bot/README.md Normal file
View File

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

7
nimscan/README.md Normal file
View File

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

View File

@ -1 +1,3 @@
--threads:on
switch("d", "release")
switch("d", "ssl")

14
server/README.md Normal file
View File

@ -0,0 +1,14 @@
# TaxenHeimer Backend Server
Backend server for TaxenHeimer written in Node.JS
## Running it
Test environment
```
npm run test
```
Release<br>
(Uses bytenode to compile and makes scripts a bit faster)
```
npm run compile
npm run runc
```