added pm2 ecosystem file

pull/79/head
TheCodedProf 3 years ago
parent 21ec2aacd7
commit a0e072a3c1

@ -1,2 +1,3 @@
ClicksMigratingProblems/**/*
src/reflex/nsfwjs/**/*
ecosystem.config.cjs

@ -0,0 +1,7 @@
module.exports = {
apps: [{
name: "Nucleus",
script: "/run/current-system/sw/bin/nix",
args: "develop --command yarn start --update-commands",
}],
}

@ -1,6 +1,6 @@
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
@ -9,6 +9,9 @@
in {
devShells.default = pkgs.mkShell {
packages = [ pkgs.nodejs-19_x pkgs.nodePackages_latest.yarn ];
shellHook = ''
unset name
'';
};
});
}
}
Loading…
Cancel
Save