add basic Makefile, requirements.txt

This commit is contained in:
Lexi / Zoe 2019-11-10 02:26:46 +01:00
parent aba8213053
commit c4ae7f2759
Signed by: binaryDiv
GPG Key ID: F8D4956E224DA232
3 changed files with 20 additions and 1 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
# General settings
APP_NAME := tofu
PYTHON ?= python3
# Development server
SERVER_LISTEN ?= 0.0.0.0:8037
.PHONY: run
# Default target: none
all:
### Local development
# Run django development server
run:
$(PYTHON) manage.py runserver $(SERVER_LISTEN)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import sys import sys

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
django