Initial commit

This commit is contained in:
2023-01-04 17:55:18 -05:00
commit ece9a68165
29 changed files with 3191 additions and 0 deletions

13
scripts.py Normal file
View File

@ -0,0 +1,13 @@
import subprocess
def server():
cmd =['python', 'manage.py', 'runserver_plus']
subprocess.run(cmd)
def migrate():
cmd =['python', 'manage.py', 'migrate']
subprocess.run(cmd)
def shell():
cmd =['python', 'manage.py', 'shell_plus']
subprocess.run(cmd)