From 498a9e7ae55f4838208ed097ef566339fcece920 Mon Sep 17 00:00:00 2001 From: Luis Date: Fri, 3 Nov 2023 22:44:44 +0100 Subject: [PATCH 1/2] Fix forgetting to delete api folder in UI --- pkgs/ui/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/ui/shell.nix b/pkgs/ui/shell.nix index ec7c78e..573aecd 100644 --- a/pkgs/ui/shell.nix +++ b/pkgs/ui/shell.nix @@ -25,7 +25,7 @@ pkgs.mkShell { # re-generate the api code - rm -rf api openapi.json + rm -rf src/api openapi.json cp ${clanPkgs.clan-openapi}/openapi.json . orval ''; -- 2.51.0 From 607a9ed1ae43d66da784ca7e4e872f23c12ac34e Mon Sep 17 00:00:00 2001 From: Luis-Hebendanz Date: Wed, 1 Nov 2023 15:57:51 +0100 Subject: [PATCH 2/2] Fixed missing direnv install step in README --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index ba0a1ec..a07da0d 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ Welcome to our website template repository! This template is designed to help yo **Dependency Management**: We use the [Nix package manager](https://nixos.org/) to manage dependencies and ensure reproducibility, making your development process more robust. ## Supported Operating Systems - - Linux - macOS @@ -34,10 +33,8 @@ Let's get your development environment up and running: ``` 3. **Add direnv to your shell**: - - Direnv needs to [hook into your shell](https://direnv.net/docs/hook.html) to work. - You can do this by executing following command: - + You can do this by executing following command: ```bash echo 'eval "$(direnv hook zsh)"' >> ~/.zshrc && echo 'eval "$(direnv hook bash)"' >> ~/.bashrc && eval "$SHELL" ``` -- 2.51.0