This repository has been archived on 2019-11-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
tofu/Makefile

18 lines
258 B
Makefile

# 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)