Created a react project and started making the main ui

This commit is contained in:
2026-06-07 16:36:18 -05:00
parent 505605c598
commit 0442642f8a
25 changed files with 3896 additions and 0 deletions

22
flake.nix Normal file
View File

@@ -0,0 +1,22 @@
{
description = "Development environment for VSSM Web UI Dashboard";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs_22
pnpm
];
};
});
}