npm create vite

This commit is contained in:
efim
2023-04-21 17:12:21 +04:00
commit 6c8e9ea4ee
12 changed files with 815 additions and 0 deletions

26
flake.nix Normal file
View File

@@ -0,0 +1,26 @@
{
description = "Planning Poker web app. Trying to build something and learn new things";
inputs.nixpkgs.url = "github:nixos/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = pkgs.mkShell {
buildInputs = [
pkgs.nodejs
pkgs.sbt
pkgs.scalafmt
# pkgs.nodePackages.tailwindcss
# pkgs.nodePackages.postcss
];
shellHook = ''
echo "dev env for planning poker BWARGH started"
'';
};
}
);
# see https://serokell.io/blog/practical-nix-flakes
}