forked from mirrors/easyappointments
14 lines
324 B
Bash
14 lines
324 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#
|
||
|
# Bash script for the generation of code documentation.
|
||
|
#
|
||
|
|
||
|
rm -rf doc
|
||
|
|
||
|
mkdir doc
|
||
|
mkdir doc/apigen
|
||
|
|
||
|
php rsc/apigen.phar generate \
|
||
|
-s "src/application/controllers,src/application/models,src/application/libraries" \
|
||
|
-d "doc/apigen" --exclude "*external*" --tree --todo --template-theme "bootstrap"
|