From fb5337d388ab062bc14f1362f6d82a7152b65d3c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:49:59 +0000 Subject: [PATCH 1/2] Initial plan From d73c7b5f414b4ce4d8b8ca6707b26c3b753df9a9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:52:25 +0000 Subject: [PATCH 2/2] Add dyad as git submodule and update documentation Co-authored-by: wasalstor-web <230709381+wasalstor-web@users.noreply.github.com> --- .gitmodules | 3 +++ NOTICE | 29 +++++++++++++++++++++++++++++ README.md | 24 +++++++++++++++++++++++- third_party/dyad | 1 + 4 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 100644 NOTICE 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/NOTICE b/NOTICE new file mode 100644 index 0000000..cc8b726 --- /dev/null +++ b/NOTICE @@ -0,0 +1,29 @@ +Third-Party Software Notices +============================= + +This repository includes third-party software components. The following +notices and licenses apply to these components: + +-------------------------------------------------------------------------------- +Dyad +-------------------------------------------------------------------------------- + +Location: third_party/dyad +Source: https://github.com/dyad-sh/dyad.git +License: Apache License, Version 2.0 + +Copyright 2025 Dyad Tech, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +The full license text can be found at third_party/dyad/LICENSE. diff --git a/README.md b/README.md index a28382b..8cf019d 100644 --- a/README.md +++ b/README.md @@ -1 +1,23 @@ -# saas \ No newline at end of file +# saas + +## Getting Started + +### Cloning the Repository + +This repository includes git submodules. To clone the repository with all submodules, use: + +```bash +git clone --recurse-submodules https://github.com/wasalstor-web/saas.git +``` + +If you have already cloned the repository without the `--recurse-submodules` flag, you can initialize and update the submodules with: + +```bash +git submodule update --init --recursive +``` + +## Third-Party Dependencies + +### Dyad + +This repository includes [dyad](https://github.com/dyad-sh/dyad.git) as a git submodule located at `third_party/dyad`. Dyad is licensed under the Apache License, Version 2.0. See `third_party/dyad/LICENSE` for details. \ No newline at end of file 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