├── .dockerignore ├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── LICENSE ├── Makefile ├── README.md └── cryptcheck-backend /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .git/* 3 | .bundle/* 4 | 5 | .vscode 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.8-cryptcheck -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalf/cryptcheck-backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalf/cryptcheck-backend/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalf/cryptcheck-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalf/cryptcheck-backend/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalf/cryptcheck-backend/HEAD/README.md -------------------------------------------------------------------------------- /cryptcheck-backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalf/cryptcheck-backend/HEAD/cryptcheck-backend --------------------------------------------------------------------------------