add reaadme and stuff

This commit is contained in:
neon443
2025-03-16 16:59:32 +00:00
parent 4373233432
commit d9d82d3304
9 changed files with 55 additions and 33 deletions

4
.nova/Configuration.json Normal file
View File

@@ -0,0 +1,4 @@
{
"python.analysis.typeCheckingMode" : "strict",
"python.pipRequirements" : "DockPhobiaPy\/requirements.txt"
}

View File

@@ -0,0 +1,17 @@
{
"actions" : {
"build" : {
"enabled" : true,
"script" : "#!\/bin\/sh\ncd DockPhobiaPy\npython3 -m venv venv\n. venv\/bin\/activate\npip3 install -r requirements.txt"
},
"clean" : {
"enabled" : true,
"script" : "#!\/bin\/sh\ncd DockPhobiaPy\n. venv\/bin\/activate\npip3 freeze > requirements.txt\nrm -rf venv"
},
"run" : {
"enabled" : true,
"script" : "#!\/bin\/sh\ncd DockPhobiaPy\n. venv\/bin\/activate\npython3 main.py"
}
},
"openLogOnRun" : "start"
}

View File

@@ -1,20 +0,0 @@
{
"actions" : {
"run" : {
"postActions" : [
{
"script" : ". *Py\/venv\/bin\/activate\npython3 *Py\/main.py",
"type" : "runScript"
}
]
}
},
"extension" : {
"identifier" : "net.danwatson.Python",
"name" : "Python"
},
"extensionTemplate" : "virtualenv",
"extensionValues" : {
"script" : "DockPhobiaPy\/main.py"
}
}