Auto commit

This commit is contained in:
64104061f23fda247c679fa8 2023-03-21 11:49:20 +00:00
parent 940b1d29d4
commit af5fa1b077
4 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
run = "cowsay 欢迎来到 InsCode"
run = "pip install -r requirements.txt;python3 main.py"
[nix]
channel = "stable-22_11"

View File

@ -1,5 +1,6 @@
{ pkgs }: {
deps = [
pkgs.cowsay
];
}
deps = [
pkgs.python310Packages.pip
pkgs.python310Full
];
}

1
main.py Normal file
View File

@ -0,0 +1 @@
print('欢迎来到 InsCode')

0
requirements.txt Normal file
View File