Move src/web to src/webapp to make it more clear what this dir is for
svn: r18327
This commit is contained in:
38
src/webapp/Makefile
Normal file
38
src/webapp/Makefile
Normal file
@@ -0,0 +1,38 @@
|
||||
# Initialize GRAMPS Django site
|
||||
|
||||
update: grampsdb/fixtures/initial_data.json
|
||||
PYTHONPATH=../../src python manage.py syncdb
|
||||
|
||||
grampsdb/fixtures/initial_data.json:
|
||||
PYTHONPATH=../../src python init.py > grampsdb/fixtures/initial_data.json
|
||||
|
||||
init_gramps:
|
||||
PYTHONPATH=../../src python init_gramps.py # clear primary and secondary tables
|
||||
|
||||
run:
|
||||
PYTHONPATH=../../src python manage.py runserver
|
||||
|
||||
sql:
|
||||
PYTHONPATH=../../src python manage.py sqlall > gramps_sql.txt
|
||||
|
||||
docs:
|
||||
mkdir -p docs
|
||||
python manage.py graph_models grampsdb -i Person,Family,Source,Event,Repository,Place,Media,Note -o docs/primary-tables.png
|
||||
python manage.py graph_models grampsdb -i Note -o docs/note-table.png
|
||||
python manage.py graph_models grampsdb -i Media -o docs/media-table.png
|
||||
python manage.py graph_models grampsdb -i Place -o docs/place-table.png
|
||||
python manage.py graph_models grampsdb -i Repository -o docs/repository-table.png
|
||||
python manage.py graph_models grampsdb -i Event -o docs/event-table.png
|
||||
python manage.py graph_models grampsdb -i Source -o docs/source-table.png
|
||||
python manage.py graph_models grampsdb -i Family -o docs/family-table.png
|
||||
python manage.py graph_models grampsdb -i Person -o docs/person-table.png
|
||||
python manage.py graph_models grampsdb -o docs/all-tables.png
|
||||
python manage.py graph_models grampsdb -i Attribute,Datamap,Name,Lds,Tag,Address,Location,Url -o docs/secondary-tables.png
|
||||
python manage.py graph_models grampsdb -i Person,Family,Source,Event,Repository,Place,Media,Note,Attribute,Datamap,Name,Lds,Tag,Address,Location,Url -o docs/prim-sec-tables.png
|
||||
python manage.py graph_models grampsdb -i Person,Family,Source,Event,Repository,Place,Media,Note,Attribute,Datamap,Name,Lds,Tag,Address,Location,Url -o docs/prim-sec-tables.png
|
||||
python manage.py graph_models grampsdb -i Person,Family,Source,Event,Repository,Place,Media,Note,Attribute,Datamap,Name,Lds,Tag,Address,Location,Url,NoteRef,SourceRef,EventRef,RepositoryRef,PersonRef,ChildRef,MediaRef -o docs/prim-sec-ref-tables.png
|
||||
|
||||
clean:
|
||||
rm -f sqlite.db
|
||||
rm -f *~ *.pyc *.pyo
|
||||
rm -f grampsdb/fixtures/initial_data.json
|
||||
Reference in New Issue
Block a user