Skip to content

Commit d8f46b7

Browse files
committed
feat: add SaaS platform example with multi-store support and custom routes
1 parent 9cdf419 commit d8f46b7

6 files changed

Lines changed: 1127 additions & 1 deletion

File tree

LICENSE

Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
Apache License
2+
Version 2.0, January 2004
3+
http://www.apache.org/licenses/
4+
5+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6+
7+
1. Definitions.
8+
9+
"License" shall mean the terms and conditions for use, reproduction,
10+
and distribution as defined by Sections 1 through 9 of this document.
11+
12+
"Licensor" shall mean the copyright owner or entity authorized by
13+
the copyright owner that is granting the License.
14+
15+
"Legal Entity" shall mean the union of the acting entity and all
16+
other entities that control, are controlled by, or are under common
17+
control with that entity. For the purposes of this definition,
18+
"control" means (i) the power, direct or indirect, to cause the
19+
direction or management of such entity, whether by contract or
20+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
21+
outstanding shares, or (iii) beneficial ownership of such entity.
22+
23+
"You" (or "Your") shall mean an individual or Legal Entity
24+
exercising permissions granted by this License.
25+
26+
"Source" form shall mean the preferred form for making modifications,
27+
including but not limited to software source code, documentation
28+
source, and configuration files.
29+
30+
"Object" form shall mean any form resulting from mechanical
31+
transformation or translation of a Source form, including but
32+
not limited to compiled object code, generated documentation,
33+
and conversions to other media types.
34+
35+
"Work" shall mean the work of authorship, whether in Source or
36+
Object form, made available under the License, as indicated by a
37+
copyright notice that is included in or attached to the work
38+
(an example is provided in the Appendix below).
39+
40+
"Derivative Works" shall mean any work, whether in Source or Object
41+
form, that is based on (or derived from) the Work and for which the
42+
editorial revisions, annotations, elaborations, or other modifications
43+
represent, as a whole, an original work of authorship. For the purposes
44+
of this License, Derivative Works shall not include works that remain
45+
separable from, or merely link (or bind by name) to the interfaces of,
46+
the Work and Derivative Works thereof.
47+
48+
"Contribution" shall mean any work of authorship, including
49+
the original version of the Work and any modifications or additions
50+
to that Work or Derivative Works thereof, that is intentionally
51+
submitted to Licensor for inclusion in the Work by the copyright owner
52+
or by an individual or Legal Entity authorized to submit on behalf of
53+
the copyright owner. For the purposes of this definition, "submitted"
54+
means any form of electronic, verbal, or written communication sent
55+
to the Licensor or its representatives, including but not limited to
56+
communication on electronic mailing lists, source code control systems,
57+
and issue tracking systems that are managed by, or on behalf of, the
58+
Licensor for the purpose of discussing and improving the Work, but
59+
excluding communication that is conspicuously marked or otherwise
60+
designated in writing by the copyright owner as "Not a Contribution."
61+
62+
"Contributor" shall mean Licensor and any individual or Legal Entity
63+
on behalf of whom a Contribution has been received by Licensor and
64+
subsequently incorporated within the Work.
65+
66+
2. Grant of Copyright License.
67+
68+
Subject to the terms and conditions of this License, each Contributor
69+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
70+
royalty-free, irrevocable copyright license to reproduce, prepare
71+
Derivative Works of, publicly display, publicly perform, sublicense,
72+
and distribute the Work and such Derivative Works in Source or
73+
Object form.
74+
75+
3. Grant of Patent License.
76+
77+
Subject to the terms and conditions of this License, each Contributor
78+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
79+
royalty-free, irrevocable (except as stated in this section) patent
80+
license to make, have made, use, offer to sell, sell, import, and
81+
otherwise transfer the Work, where such license applies only to those
82+
patent claims licensable by such Contributor that are necessarily
83+
infringed by their Contribution(s) alone or by combination of their
84+
Contribution(s) with the Work to which such Contribution(s) was
85+
submitted. If You institute patent litigation against any entity
86+
(including a cross-claim or counterclaim in a lawsuit) alleging that
87+
the Work or a Contribution incorporated within the Work constitutes
88+
direct or contributory patent infringement, then any patent licenses
89+
granted to You under this License for that Work shall terminate
90+
as of the date such litigation is filed.
91+
92+
4. Redistribution.
93+
94+
You may reproduce and distribute copies of the Work or Derivative
95+
Works thereof in any medium, with or without modifications, and in
96+
Source or Object form, provided that You meet the following conditions:
97+
98+
(a) You must give any other recipients of the Work or Derivative Works
99+
a copy of this License; and
100+
101+
(b) You must cause any modified files to carry prominent notices
102+
stating that You changed the files; and
103+
104+
(c) You must retain, in the Source form of any Derivative Works that
105+
You distribute, all copyright, patent, trademark, and attribution
106+
notices from the Source form of the Work, excluding those notices
107+
that do not pertain to any part of the Derivative Works; and
108+
109+
(d) If the Work includes a "NOTICE" text file as part of its
110+
distribution, then any Derivative Works that You distribute must
111+
include a readable copy of the attribution notices contained
112+
within such NOTICE file, excluding those notices that do not
113+
pertain to any part of the Derivative Works, in at least one
114+
of the following places: within a NOTICE text file distributed
115+
as part of the Derivative Works; within the Source form or
116+
documentation, if provided along with the Derivative Works; or,
117+
within a display generated by the Derivative Works, if and
118+
wherever such third-party notices normally appear. The contents
119+
of the NOTICE file are for informational purposes only and
120+
do not modify the License. You may add Your own attribution
121+
notices within Derivative Works that You distribute, alongside
122+
or as an addendum to the NOTICE text from the Work, provided
123+
that such additional attribution notices cannot be construed
124+
as modifying the License.
125+
126+
You may add Your own copyright statement to Your modifications and
127+
may provide additional or different license terms and conditions
128+
for use, reproduction, or distribution of Your modifications, or
129+
for any such Derivative Works as a whole, provided Your use,
130+
reproduction, and distribution of the Work otherwise complies with
131+
the conditions stated in this License.
132+
133+
5. Submission of Contributions.
134+
135+
Unless You explicitly state otherwise, any Contribution intentionally
136+
submitted for inclusion in the Work by You to the Licensor shall be
137+
under the terms and conditions of this License, without any additional
138+
terms or conditions. Notwithstanding the above, nothing herein shall
139+
supersede or modify the terms of any separate license agreement you
140+
may have executed with Licensor regarding such Contributions.
141+
142+
6. Trademarks.
143+
144+
This License does not grant permission to use the trade names,
145+
trademarks, service marks, or product names of the Licensor,
146+
except as required for reasonable and customary use in describing the
147+
origin of the Work and reproducing the content of the NOTICE file.
148+
149+
7. Disclaimer of Warranty.
150+
151+
Unless required by applicable law or agreed to in writing, Licensor
152+
provides the Work (and each Contributor provides its Contributions)
153+
on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
154+
either express or implied, including, without limitation, any
155+
warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY,
156+
or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for
157+
determining the appropriateness of using or redistributing the Work
158+
and assume any risks associated with Your exercise of permissions
159+
under this License.
160+
161+
8. Limitation of Liability.
162+
163+
In no event and under no legal theory, whether in tort
164+
(including negligence), contract, or otherwise, unless required by
165+
applicable law (such as deliberate and grossly negligent acts) or
166+
agreed to in writing, shall any Contributor be liable to You for
167+
damages, including any direct, indirect, special, incidental, or
168+
consequential damages of any character arising as a result of this
169+
License or out of the use or inability to use the Work (including
170+
but not limited to damages for loss of goodwill, work stoppage,
171+
computer failure or malfunction, or any and all other commercial
172+
damages or losses), even if such Contributor has been advised of
173+
the possibility of such damages.
174+
175+
9. Accepting Warranty or Additional Liability.
176+
177+
While redistributing the Work or Derivative Works thereof, You may
178+
choose to offer, and charge a fee for, acceptance of support,
179+
warranty, indemnity, or other liability obligations and/or rights
180+
consistent with this License. However, in accepting such obligations,
181+
You may act only on Your own behalf and on Your sole responsibility,
182+
not on behalf of any other Contributor, and only if You agree to
183+
indemnify, defend, and hold each Contributor harmless for any liability
184+
incurred by, or claims asserted against, such Contributor by reason
185+
of your accepting any such warranty or additional liability.
186+
187+
END OF TERMS AND CONDITIONS
188+
189+
Copyright 2025 XRAPH
190+
191+
Licensed under the Apache License, Version 2.0 (the "License");
192+
you may not use this file except in compliance with the License.
193+
You may obtain a copy of the License at
194+
195+
http://www.apache.org/licenses/LICENSE-2.0
196+
197+
Unless required by applicable law or agreed to in writing, software
198+
distributed under the License is distributed on an "AS IS" BASIS,
199+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200+
See the License for the specific language governing permissions and
201+
limitations under the License.

0 commit comments

Comments
 (0)