diff --git a/docs/introduction/getting-started.md b/docs/introduction/getting-started.md index 3a46979..e2997af 100644 --- a/docs/introduction/getting-started.md +++ b/docs/introduction/getting-started.md @@ -8,13 +8,14 @@ it into a directory that is included in the `$PATH` environment variable or buil ## Run debug-flow -Run `debug-flow` inside the Git Repository that should be managed using: +Run `debug-flow` using: ```sh -debug-flow serve +debug-flow ``` -This will create a `./debug-flow` directory and start a webserver on `localhost` that provides access +where ` is the Git Repository that should be managed (default: `.`) +This will create a `./debug-flow`directory and start a webserver on`localhost` that provides access to your projects and the repository. The host and port that the server binds to is printed in the terminal and can then be opened in the diff --git a/shell.nix b/shell.nix index be3cef9..48ce672 100644 --- a/shell.nix +++ b/shell.nix @@ -9,5 +9,6 @@ pkgs.mkShell { export OPENSSL_DIR=${pkgs.openssl.dev} export OPENSSL_LIB_DIR=${pkgs.openssl.out}/lib export OPENSSL_INCLUDE_DIR=${pkgs.openssl.dev}/include + export LD_LIBRARY_PATH=${pkgs.openssl.out}/lib:$LD_LIBRARY_PATH ''; }