├── README.md └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | REPO HAS BEEN MOVED TO https://github.com/EasyX-Community/EasyNOMP 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.bak 3 | *.rdb 4 | *.log 5 | 6 | .git/ 7 | .idea/ 8 | 9 | node_modules/ 10 | libs/BACKUP-OLD 11 | website/static/OLD 12 | 13 | website/pages/news.html 14 | 15 | certs/*.pem 16 | certs/*.crt 17 | certs/*.key 18 | logs/* 19 | 20 | package-lock.json 21 | ecosystem.config.js 22 | 23 | access-token 24 | config.json 25 | lzCode.conf 26 | matomoCode.conf 27 | 28 | pool_configs/*.json 29 | !pool_configs/*_example.json 30 | 31 | !.gitkeep 32 | --------------------------------------------------------------------------------