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

19 lines
258 B
Makefile
Raw Permalink Normal View History

2019-11-10 02:26:46 +01:00
# 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)