mirror of
https://github.com/ansible/awx.git
synced 2026-02-01 09:38:10 -03:30
Various Django cleanup
This commit is contained in:
23
Makefile
Normal file
23
Makefile
Normal file
@@ -0,0 +1,23 @@
|
||||
setup:
|
||||
ansible-playbook app_setup/setup.yml -i "127.0.0.1," -c local -e working_dir=`pwd`
|
||||
|
||||
syncdb:
|
||||
python acom/manage.py syncdb
|
||||
|
||||
runserver:
|
||||
python acom/manage.py runserver
|
||||
|
||||
# already done and should not have to happen again:
|
||||
#
|
||||
#south_init:
|
||||
# PYTHON_PATH=./acom python acom/manage.py schemamigration main --initial
|
||||
|
||||
dbchange:
|
||||
PYTHON_PATH=./acom python acom/manage.py schemamigration main --auto
|
||||
|
||||
migrate:
|
||||
PYTHON_PATH=./acom python acom/manage.py migrate main --auto
|
||||
|
||||
test:
|
||||
PYTHON_PATH=./acom python acom/manage.py test main
|
||||
|
||||
Reference in New Issue
Block a user