Skip to content

Commit 259cb81

Browse files
author
Dabit
committed
added license, added readme
1 parent 2f4e455 commit 259cb81

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 Nader Dabit
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## JAMstack CMS infrastructure as code
2+
3+
This is the back end infrastructure that powers the JAMstack CMS.
4+
5+
If you would like to build another CMS based on the JAMstack CMS, this is a great place to start. It includes the following:
6+
7+
1. GraphQL API with authorization rules.
8+
9+
2. Amazon S3 for storage of images, videos, and files.
10+
11+
3. Authentication service for user management and general authentication and authorization.
12+
13+
4. Lambda functions for image resizing and post-confirmation of users to add to groups.
14+
15+
### To deploy this backend with another app
16+
17+
1. Download the amplify folder into the root of the application you'd like to build
18+
19+
2. Run the following command:
20+
21+
```sh
22+
amplify init
23+
```
24+
25+
3. Update the schema to match your requirements.
26+
27+
4. To update any configuration, you can run the following commands:
28+
29+
```sh
30+
amplify update storage
31+
32+
amplify update api
33+
34+
amplify update auth
35+
36+
amplify update function
37+
``
38+

0 commit comments

Comments
 (0)