├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── markcop ├── circle.yml └── lib ├── README.md └── dictionary /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/README.md -------------------------------------------------------------------------------- /bin/markcop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/bin/markcop -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/markcop/HEAD/lib/dictionary --------------------------------------------------------------------------------