12 lines
348 B
Makefile
12 lines
348 B
Makefile
DROPZONE=https://github.com/enyo/dropzone/archive/v5.7.0.zip
|
|
|
|
|
|
dev-setup:
|
|
pip install -r requirements.txt
|
|
pip install -r dev-requirements.txt
|
|
./manage.py migrate
|
|
./manage.py createsuperuser --username admin --email admin@localhost
|
|
|
|
interface/static/dropzone/dropzone.js:
|
|
wget -O dropzone.zip ${DROPZONE}
|
|
unzip -d interface/static dropzone.zip
|