This repository has been archived on 2019-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
|
# 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)
|