this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Update start-server script path in flake.nix.

+2 -2
+2 -2
flake.nix
··· 69 69 paths = [ 70 70 pkgs.nginx 71 71 react 72 - (pkgs.writeScriptBin "start-server" '' 72 + (pkgs.writeScriptBin "start-server.sh" '' 73 73 #!/usr/bin/env bash 74 74 75 75 # Create necessary directories ··· 88 88 }; 89 89 90 90 config = { 91 - Cmd = [ "/bin/start-server" ]; 91 + Cmd = [ "/start-server.sh" ]; 92 92 ExposedPorts = { "8080/tcp" = { }; }; 93 93 }; 94 94 };