Compare commits

..

No commits in common. "c4ae7f2759bca85a5778b26e567ca02999bc0756" and "89e0328a53e89087a7c3a101f7de3bd55cf7ee14" have entirely different histories.

4 changed files with 3 additions and 21 deletions

3
.gitignore vendored
View File

@ -11,7 +11,9 @@ db.sqlite3
# Environments
.python-version
.env
.venv
env/
venv/
# Distribution / packaging
@ -25,4 +27,3 @@ pip-delete-this-directory.txt
# IDE stuff
.idea/
.vscode/

View File

@ -1,18 +0,0 @@
# 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 python3
#!/usr/bin/env python
import os
import sys

View File

@ -1 +0,0 @@
django