-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
124 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,82 @@ short text documents that captures an important architectural decision made | |
along with its context and consequences. | ||
Only changes of type feat, fix, perf or refactor will be added to the newsletter. The reader is not interested in the others. | ||
``` | ||
|
||
## GitHub Action | ||
|
||
> TODO | ||
```yaml | ||
name: github pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: 11 08 * * * | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
# Number of commits to fetch. 0 indicates all history. | ||
# Default: 1 | ||
fetch-depth: 0 | ||
|
||
- name: Setup Python | ||
# https://github.com/actions/virtual-environments/issues/1202 | ||
# uses: actions/setup-python@v1 | ||
# with: | ||
# python-version: '3.8' | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.10 | ||
architecture: x64 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
run: pip install pip-tools | ||
|
||
- name: Update requirements | ||
run: make update | ||
|
||
- name: Make the site | ||
run: make build-docs | ||
|
||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add requirements.txt | ||
git add docs/newsletter | ||
git diff-index --quiet HEAD \ | ||
|| git commit -m "chore: update dependency and publish newsletters" | ||
|
||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: master | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | ||
publish_dir: ./site | ||
``` | ||
## License | ||
Copyright 2024, Manifold Finance Inc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,48 @@ | |
title: Legal | ||
--- | ||
|
||
## Notices and Compliance | ||
### Imprint | ||
|
||
Manifold Finance Corporation | ||
2810 N Church St | ||
PMB 138571 | ||
Wilmington, Delaware 19802 | ||
|
||
tel:+1 302 299 8995 | ||
mailto:[email protected] | ||
|
||
## General Notice | ||
|
||
Copyright © 2021-2024 Manifold Finance, Inc. All Rights Reserved | ||
|
||
This software or document includes material from Manifold Finance. | ||
|
||
THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO | ||
REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED | ||
TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, | ||
NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR | ||
ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE | ||
ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. | ||
|
||
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR | ||
CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE | ||
PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. | ||
|
||
#### Google Analytics | ||
|
||
This website uses Google Analytics, a web analysis service provided by Google Inc. ("Google"). Google Analytics uses so-called "cookies", text files placed on your computer, to help the website analyze how users use the site. The information generated by the cookie about your use of the website (including your IP address) will be transmitted to and stored by Google on servers in the United States. Google will use this information to evaluate your use of the website, to compile reports on website activity for website operators and to provide other services related to website activity and internet usage. Google may also transfer this information to third parties where required to do so by law, or where such third parties process the data on Google's behalf. Google will never associate your IP address with any other data held by Google. You may refuse the use of cookies by selecting the appropriate settings on your browser, however please note that if you do this you may not be able to use the full functionality of this website. By using this website, you consent to the processing of data about you by Google in the manner and for the purposes set out above. | ||
|
||
### Haftung und Disclaimer | ||
|
||
> This Disclaimer is governed by German Law. | ||
By downloading content from the Manifold Finance GitHub repository, | ||
you declare to Manifold Finance, a Delaware C Corporation, that you, | ||
and if you are acting for an organization you and such organization, understand and agree to the following: | ||
|
||
The content of this repository is provided to you by Manifold Finance, Inc. for illustrative purposes only. | ||
It is provided "as" is without any express or implied guarantee or warranty of any kind, | ||
including without limitations any representations and warranties as to quality, absence of errors, | ||
timeliness or completeness. As the content is provided to you for free, Manifold Finance, Inc. | ||
SHALL NOT be liable for the content, except for its willful misconduct (“Vorsatz”) and gross negligence (“grobe Fahrlässigkeit”). | ||
Check warning on line 48 in docs/Legal/index.md GitHub Actions / spellcheck
Check warning on line 48 in docs/Legal/index.md GitHub Actions / spellcheck
|
||
|