升级后端并开源UI

This commit is contained in:
pycook
2019-08-28 20:34:10 +08:00
committed by pycook
parent 02c01f60bf
commit 20fd6393e4
114 changed files with 5243 additions and 4543 deletions

25
Makefile Normal file
View File

@@ -0,0 +1,25 @@
.PHONY: docs test
help:
@echo " env create a development environment using virtualenv"
@echo " deps install dependencies using pip"
@echo " clean remove unwanted files like .pyc's"
@echo " lint check style with flake8"
@echo " test run all your tests using py.test"
env:
sudo easy_install pip && \
pip install pipenv &&
make deps
deps:
pipenv install --dev
clean:
python manage.py clean
lint:
flake8 --exclude=env .
test:
py.test tests