diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..628e418 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "third_party/dyad"] + path = third_party/dyad + url = https://github.com/dyad-sh/dyad.git diff --git a/README.md b/README.md index a28382b..dbd2dbb 100644 --- a/README.md +++ b/README.md @@ -1 +1,37 @@ -# saas \ No newline at end of file +# saas + +## Submodules + +This repository uses git submodules for external dependencies. + +### Included Submodules + +| Path | Repository | Description | +|------|------------|-------------| +| `third_party/dyad` | https://github.com/dyad-sh/dyad.git | Dyad - External dependency | + +### Initializing Submodules + +After cloning this repository, initialize and update all submodules with: + +```bash +git submodule update --init --recursive +``` + +To clone this repository with all submodules in one command: + +```bash +git clone --recurse-submodules +``` + +### Updating Submodules + +To update submodules to their latest commits: + +```bash +git submodule update --remote --merge +``` + +## Third-Party Licenses + +This project includes third-party code. See the [THIRD_PARTY_LICENSES.md](THIRD_PARTY_LICENSES.md) file for license information. \ No newline at end of file diff --git a/THIRD_PARTY_LICENSES.md b/THIRD_PARTY_LICENSES.md new file mode 100644 index 0000000..1614fc6 --- /dev/null +++ b/THIRD_PARTY_LICENSES.md @@ -0,0 +1,20 @@ +# Third-Party Licenses + +This document lists the licenses of third-party software included in this repository. + +## Dyad + +- **Path**: `third_party/dyad` +- **Repository**: https://github.com/dyad-sh/dyad.git +- **License**: Apache License 2.0 (with additional terms for `src/pro/` directory) + +The full license text is available in `third_party/dyad/LICENSE`. + +### License Summary + +Portions of the dyad software are licensed as follows: + +- All content that resides under the `src/pro/` directory of the dyad repository, if that directory exists, is licensed under the license defined in `src/pro/LICENSE`. +- Content outside of the above-mentioned directories is available under the Apache License 2.0. + +For the complete license terms, please refer to the LICENSE file in the dyad submodule. diff --git a/third_party/dyad b/third_party/dyad new file mode 160000 index 0000000..fadfbc0 --- /dev/null +++ b/third_party/dyad @@ -0,0 +1 @@ +Subproject commit fadfbc06be8d08efcd0e12a366c881c4df5c9086