Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manifoldfinance/legal
SPDX License Information, Terms of Service, Policies and our Warrant Canary
https://github.com/manifoldfinance/legal
compliance eula foss legal policy-framework spdx tos warrant-canary
Last synced: about 2 months ago
JSON representation
SPDX License Information, Terms of Service, Policies and our Warrant Canary
- Host: GitHub
- URL: https://github.com/manifoldfinance/legal
- Owner: manifoldfinance
- Created: 2021-03-08T08:52:26.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-30T02:37:27.000Z (10 months ago)
- Last Synced: 2024-05-19T00:36:40.963Z (8 months ago)
- Topics: compliance, eula, foss, legal, policy-framework, spdx, tos, warrant-canary
- Language: Shell
- Homepage:
- Size: 230 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.spdx
Awesome Lists containing this project
README
# [Legal Resources](#)
## TLDR:
(via Apple's Min. Dev EULA)
Legal Compliance: The End-User must represent and warrant that (i) he/she is not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country; and (ii) he/she is not listed on any U.S. Government list of prohibited or restricted parties.
## Corporate & Business Practices
- Document Retention
- AML/KYC (per money transmission)## Software and Data Licenses
- Terms of Service
- EULA
- CCPA
- GDPR
- SPDX Resources## Script
```bash
#!/usr/env/bin bashLIBS=""
rm ALL.txt 2> /dev/null
for l in $LIBS; do rm -rf $l; done#
# PLACE REPOS HERE
#for l in $LIBS; do
F=$(ls $l | head -n 1)
echo "LICENSE FOR $l:" >> ALL.txt
echo "" >> ALL.txt
cat $l/$F >> ALL.txt
echo "" >> ALL.txt
done
```