add basic Makefile, requirements.txt
This commit is contained in:
parent
aba8213053
commit
c4ae7f2759
|
|
@ -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)
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
django
|
||||
Reference in New Issue