Hybrid Application for SEARCA's Document Tracking System
- Install git or git-scm for windows
- Install yarn
git clone https://github.com/SEARCAPhil/dts.git
git checkout develop
This is the current development branchnpm install -g phonegap@latest
npm install -g documentation
yarn install
- Configure
o365
app configuration inassets/js/login/office365Auth.js
. Change default value ofwindow.adalConfig = { ... }
with your AD configuration - Open your browser and navigate to
http://localhost/dts/www/
In your production server, only the content of
www
is necessary so you may only copy all the files insidewww
to your webserver's root directory. Copy dts/www to web_root/dts
https://your_domain/dts/
- To run the system via phonegap run
phongap serve
and typehttp://localhost:3000/index.html
in your browser - Setup the API
To view the code documentation, run
documentation build www/assets/js/** -o docs -f html
and opendocs/index.html
.
You can read the full documentation of documentation.js on their official repository