Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Redwood | 16,009 | 18 | 14 hours ago | 3,293 | September 24, 2022 | 417 | mit | TypeScript | ||
The App Framework for Startups | ||||||||||
Jamstack.org | 2,585 | 11 days ago | 111 | mit | Nunjucks | |||||
The official Jamstack site | ||||||||||
Jamstack Ecommerce | 1,759 | 5 months ago | 21 | mit | JavaScript | |||||
A starter project for building performant ECommerce applications with Next.js and React | ||||||||||
Ecommerce Netlify | 1,398 | 10 months ago | 29 | Vue | ||||||
🛍 A JAMstack Ecommerce Site built with Nuxt and Netlify Functions | ||||||||||
Commercejs Nextjs Demo Store | 1,010 | 3 months ago | 32 | bsd-3-clause | JavaScript | |||||
Commerce demo store built for the Jamstack. Built with Commerce.js, Next.js, and can be one-click deployed to Netlify. Includes product catalog, customer login, categories, variants, cart, checkout, payments (Stripe) order confirmation, and printable receipts. | ||||||||||
Githut | 805 | a month ago | 9 | agpl-3.0 | JavaScript | |||||
Github Language Statistics | ||||||||||
Jamstack Cms | 712 | 2 years ago | 17 | mit | JavaScript | |||||
Modern full stack CMS. Built with Gatsby, GraphQL, AWS Amplify, and Serverless technologies. | ||||||||||
Serverlessui | 536 | 2 | a year ago | 30 | July 24, 2021 | 1 | TypeScript | |||
A command-line utility for deploying serverless applications to AWS. Complete with custom domains, deploy previews, TypeScript support, and more. | ||||||||||
Functions.netlify.com | 515 | 11 days ago | 71 | SCSS | ||||||
Tutorials, examples, workshops and a playground for serverless with Netlify Functions | ||||||||||
Eleventyone | 440 | a year ago | 11 | mit | JavaScript | |||||
A scaffold for a quick start building with the Eleventy SSG |
This is the back end infrastructure that powers the JAMstack CMS.
If you would like to build another CMS based on the JAMstack CMS, this is a great place to start. It includes the following:
GraphQL API with authorization rules.
Amazon S3 for storage of images, videos, and files.
Authentication service for user management and general authentication and authorization.
Lambda functions for image resizing and post-confirmation of users to add to groups.
Download the amplify folder into the root of the application you'd like to build
Run the following command:
amplify init
Update the schema to match your requirements.
To update any configuration, you can run the following commands:
amplify update storage
amplify update api
amplify update auth
amplify update function
To update the schema, open the schema at amplify/backend/api/jamstackcms. Here is the base schema:
type Post @model
@auth (
rules: [
{ allow: groups, groups: ["Admin"], operations: [create, update, delete] },
{ allow: private, operations: [read] },
{ allow: public, operations: [read] }
]
) {
id: ID!
title: String!
description: String
content: String!
cover_image: String
createdAt: String
published: Boolean
previewEnabled: Boolean
categories: [String]
author: User @connection
}
type Comment @model @auth(
rules: [
{ allow: groups, groups: ["Admin"], operations: [create, update, delete] },
{ allow: owner, ownerField: "createdBy", operations: [create, update, delete] }
]
) {
id: ID!
message: String!
createdBy: String
createdAt: String
}
type Settings @model @auth(rules: [
{ allow: groups, groups: ["Admin"] },
{ allow: groups, groupsField: "adminGroups"},
{ allow: public, operations: [read] },
]) {
id: ID!
categories: [String]
adminGroups: [String]
theme: String
border: String
borderWidth: Int
description: String
}
type Preview @model
@auth (
rules: [
{ allow: groups, groups: ["Admin"] },
{ allow: private, operations: [read] }
]
) {
id: ID!
title: String!
description: String
content: String!
cover_image: String
createdAt: String
categories: [String]
}
type Page @model(subscriptions: null)
@auth (
rules: [
{ allow: groups, groups: ["Admin"] },
{ allow: private, operations: [read] },
{ allow: public, operations: [read] }
]
)
{
id: ID!
name: String!
slug: String!
content: String!
components: String
published: Boolean
}
type User @model
@auth(rules: [
{ allow: owner },
{ allow: groups, groups: ["Admin"]},
{ allow: public, operations: [read] }
])
{
id: ID!
name: String
username: String
avatarUrl: String
}
Once you've made the updates, run the following command to test the new API:
amplify mock
Once you've tested the updates, run the following command to deploy the new API:
amplify push