Compare commits
No commits in common. "c4ae7f2759bca85a5778b26e567ca02999bc0756" and "89e0328a53e89087a7c3a101f7de3bd55cf7ee14" have entirely different histories.
c4ae7f2759
...
89e0328a53
|
|
@ -11,7 +11,9 @@ db.sqlite3
|
||||||
|
|
||||||
# Environments
|
# Environments
|
||||||
.python-version
|
.python-version
|
||||||
|
.env
|
||||||
.venv
|
.venv
|
||||||
|
env/
|
||||||
venv/
|
venv/
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
|
|
@ -25,4 +27,3 @@ pip-delete-this-directory.txt
|
||||||
|
|
||||||
# IDE stuff
|
# IDE stuff
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
|
||||||
|
|
|
||||||
18
Makefile
18
Makefile
|
|
@ -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)
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
django
|
|
||||||
Reference in New Issue