diff --git a/readme.md b/readme.md index 8a099e4..f55bbc9 100644 --- a/readme.md +++ b/readme.md @@ -24,13 +24,4 @@ cd segfautils/ go run main.go # Run this when you've done above, and you're planning on developing, if not, do below go build . -o segfautils ./segfautils -``` -#### NixOS -``` -git clone https://github.com/ProjectSegfault/segfautils -cd segfautils/ -nix-shell # Avoid installing Go and setting up the web port, by just running a nix shell -# You still need the environment variables HCAPTCHA_SITE_KEY, HCAPTCHA_SECRET_KEY and SEGFAUTILS_WEBHOOK_URL though! -go run main.go # If you're developing -go build . -o segfautils && ./segfautils # If you're intending to use Segfautils for production. -``` +``` \ No newline at end of file diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 797efd9..0000000 --- a/shell.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ pkgs ? import {} -}: -pkgs.mkShell { - name="dev"; - buildInputs = [ - pkgs.go - ]; - shellHook = '' - export SEGFAUTILS_PORT=6893 - echo "Go installed, have your fun" - ''; -} \ No newline at end of file