32 lines
915 B
Bash
Raw Normal View History

2019-01-27 00:24:01 +01:00
#!/bin/bash
####################################################################
# PROJECT: Data Controller Docs #
####################################################################
## Create regular mkdocs docs
2020-04-16 10:44:57 +02:00
echo 'extracting licences'
OUTFILE='docs/licences.md'
cat > $OUTFILE <<'EOL'
<!-- this page is AUTOMATICALLY updated!! -->
# Data Controller for SAS® - Source Licences
## Overview
Data Controller source licences are extracted automatically from our repo using the [license-checker](https://www.npmjs.com/package/license-checker) NPM module
2020-04-16 22:06:52 +02:00
```
2020-04-16 10:44:57 +02:00
EOL
license-checker --production --relativeLicensePath --direct --start ../dcfrontend >> docs/licences.md
2020-04-16 22:06:52 +02:00
echo '```' >> docs/licences.md
2020-04-16 10:44:57 +02:00
2019-01-27 00:24:01 +01:00
echo 'building mkdocs'
mkdocs build --clean
#mkdocs serve
rsync -avz --exclude .git/ --del -e "ssh -p 722" site/ macropeo@77.72.0.226:/home/macropeo/docs.datacontroller.io