From ac122c2cdf53a6c91dc549d3056d4187df739702 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:47:57 +0000 Subject: [PATCH 1/3] Initial plan From 61027c3430f177943bdef5e4ce49b63952830c28 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:50:41 +0000 Subject: [PATCH 2/3] Add dyad as git submodule at third_party/dyad with documentation Co-authored-by: wasalstor-web <230709381+wasalstor-web@users.noreply.github.com> --- .gitmodules | 3 +++ README.md | 38 +++++++++++++++++++++++++++++++++++++- THIRD_PARTY_LICENSES.md | 20 ++++++++++++++++++++ third_party/dyad | 1 + 4 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 100644 THIRD_PARTY_LICENSES.md create mode 160000 third_party/dyad 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..a023749 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 https://github.com/wasalstor-web/saas.git +``` + +### 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 From 458e8e96248163044725c62983aeebb0aa1b571f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:51:26 +0000 Subject: [PATCH 3/3] Use generic placeholder for repository URL in README Co-authored-by: wasalstor-web <230709381+wasalstor-web@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a023749..dbd2dbb 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ git submodule update --init --recursive To clone this repository with all submodules in one command: ```bash -git clone --recurse-submodules https://github.com/wasalstor-web/saas.git +git clone --recurse-submodules ``` ### Updating Submodules