diff --git a/.replit b/.replit deleted file mode 100644 index 5dec4e6..0000000 --- a/.replit +++ /dev/null @@ -1,19 +0,0 @@ -compile = ["make", "build"] -run = ["make", "test"] -entrypoint = "main.cpp" -language = "c++" -hidden = ["LICENSE", "CMakeLists.txt", "Makefile", ".gitignore", ".clang-format", "compile_commands.json", ".ccls-cache", "build"] - -[nix] -channel = "stable-21_11" - -[languages] - -[languages.cpp] -pattern = "**/*.{cpp,h}" - -[languages.cpp.languageServer] -start = "clangd" - -[debugger] -support = false diff --git a/README.md b/README.md index 69a06fd..588fd8d 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,19 @@ # Bootstrap for C++ coding kata [![CI](https://github.com/Coding-Cuddles/bootstrap-cpp-kata/actions/workflows/main.yml/badge.svg)](https://github.com/Coding-Cuddles/bootstrap-cpp-kata/actions/workflows/main.yml) -[![Replit](https://img.shields.io/badge/Try%20with%20Replit-black?logo=replit)](https://replit.com/new/github/Coding-Cuddles/bootstrap-cpp-kata) ## Overview -This is a bootstrap repository for clean code katas in C++17 using GTest. +This is a bootstrap repository for clean code katas in C++17 using GoogleTest. -## Usage - -You can import this project into [Replit](https://replit.com), and it will -handle all dependencies automatically. - -### Prerequisites +## Prerequisites - A compatible C++ compiler that supports at least C++17 - [CMake](https://cmake.org) - [GoogleTest](https://github.com/google/googletest) +## Usage + ### Build ```console diff --git a/replit.nix b/replit.nix deleted file mode 100644 index 3d03b66..0000000 --- a/replit.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs }: { - deps = [ - pkgs.clang_12 - pkgs.cmake - pkgs.gtest - ]; -}