update replit configs

This commit is contained in:
David Reed 2022-09-12 20:40:16 -04:00
parent d715651521
commit 00c8f9ab2e
2 changed files with 17 additions and 2 deletions

14
.replit
View file

@ -1,3 +1,13 @@
language = "nix"
run = ["npm", "start"]
[packager]
language = "nodejs-npm"
[nix]
channel = "stable-21_11"
[debugger]
[unitTest]
language = "nodejs"
run = "./main.sh"
onBoot = "chmod u+x main.sh"

5
replit.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs }: {
deps = [
pkgs.nodejs-16_x.out
];
}