├── .github └── workflows │ ├── deploy.yaml │ └── test.yaml ├── .gitignore ├── Caddyfile ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── crack.txt └── docker-compose.yml /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/.gitignore -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/README.md -------------------------------------------------------------------------------- /crack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/crack.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circa10a/ai-troller/HEAD/docker-compose.yml --------------------------------------------------------------------------------