Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pages-cms/pages-cms
The No-Hassle CMS for Static Sites Generators
https://github.com/pages-cms/pages-cms
11ty astro cms docusaurus eleventy gatsby hugo jekyll nextjs ssg static-site static-site-generator vitepress vue vuejs vuejs3 vuepress
Last synced: 2 days ago
JSON representation
The No-Hassle CMS for Static Sites Generators
- Host: GitHub
- URL: https://github.com/pages-cms/pages-cms
- Owner: pages-cms
- Created: 2023-12-16T13:20:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-30T03:52:21.000Z (13 days ago)
- Last Synced: 2025-01-02T20:06:30.874Z (10 days ago)
- Topics: 11ty, astro, cms, docusaurus, eleventy, gatsby, hugo, jekyll, nextjs, ssg, static-site, static-site-generator, vitepress, vue, vuejs, vuejs3, vuepress
- Language: TypeScript
- Homepage: https://pagescms.org
- Size: 1.63 MB
- Stars: 1,592
- Watchers: 16
- Forks: 207
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome - pages-cms/pages-cms - The No-Hassle CMS for Static Sites Generators (TypeScript)
README
# Pages CMS
[Pages CMS](https://pagescms.org) is an Open Source Content Management System for GitHub. It is particularly well suited for static site generators (e.g. Jekyll, Next.js, VuePress, Hugo).
It offers a user-friendly interface to edit the content of your website or app directly on GitHub.
*[Watch the demo ▶](https://demo.pagescms.org)*
## Documentation
Go to [pagescms.org/docs](https://pagescms.org/docs).
## Built with
- [Next.js](https://nextjs.org/)
- [Tailwind CSS](https://tailwindcss.com/)
- [shadcn/ui](https://ui.shadcn.com/)
- [drizzle](https://orm.drizzle.team/)
- [Vercel](https://vercel.com/)
- [Turso](https://turso.tech/)
- [Resend](https://resend.com/)## Use online
The easiest way to get started is to use [the online version of Pages CMS](https://app.pagescms.org). You'll be able to log in with your GitHub account and get the latest version of Pages CMS.
This online version is identical to what's in this repo, but you can also install your own version locally or deploy it (for free) on Vercel following the steps below.
## Install and Deploy
### Create a GitHub App
Whether you're installing Pages CMS locally or deploying it online, you will need a GitHub App.
You can either create it under your personal account (https://github.com/settings/apps) or under one of your organizations (https://github.com/organizations//settings/apps).
You will need to fill in the following information:
- **GitHub App name**: use "Pages CMS" or whatever you think is appropriate (e.g. "Pages CMS (dev)").
- **Homepage URL**: whatever you want, https://pagescms.org will do.
- **Identifying and authorizing users**:
- Callback URL: the URL for `/api/auth/github`:
- `http://localhost:3000/api/auth/github` for development,
- something like `https://my-vercel-url.vercel.app/api/auth/github` (or whatever custom domain you're using) if you're deploying on Vercel.
- Expire user authorization tokens: no.
- Request user authorization (OAuth) during installation: yes.
- Enable Device Flow: no.
- **Post installation**:
- Setup URL (optional): leave empty.
- Redirect on update: no.
- **Webhook**:
- Active: yes.
- Webhook URL: the (public) URL for `/api/webhook/github`:
- for development, you'll need to use something like [ngrok](https://ngrok.com/). You'll end up with something like `https://your-unique-subdomain.ngrok-free.app/api/webhook/github`.
- something like `https://my-vercel-url.vercel.app/api/webhook/github` (or whatever custom domain you're using) if you're deploying on Vercel.
- Secret: generate a random string (for example with `openssl rand -base64 32` on MacOS/Linux)
- **Permissions**:
- Repository permissions:
- Administration: Read & Write
- Contents: Read & Write
- Metadata: Read only
- Organization permissions: nothing.
- Account permissions: nothing.
- **Subscribe to events**:
- Installation target
- Repository (you'll probably need to add this after creating the GitHub App)
- **Where can this GitHub App be installed?**: you'll want to select "Any account" unless you intend to only use Pages CMS on the account this GitHub App is created under.### Environment variables
Variable | Comments
--- | ---
`CRYPTO_KEY` | Used to encrypt/decrypt GitHub tokens in the database. On MacOS/Linux*, you can use `openssl rand -base64 32`.
`GITHUB_APP_ID` | GitHub App ID from your GitHub App details page.
`GITHUB_APP_NAME` | Machine name for your GitHub App (e.g. `pages-cms`), should be the slug the URL of your GitHub App details page.
`GITHUB_APP_PRIVATE_KEY` | PEM file you can download upong creation of the GitHub App.
`GITHUB_APP_WEBHOOK_SECRET` | The secret you picked for your webhook. This is used to ensure the request is coming from GitHub.
`GITHUB_APP_CLIENT_ID` | GitHub App Client ID from your GitHub App details page.
`GITHUB_APP_CLIENT_SECRET` | GitHub App Client Secret you generate on theGitHub App details page.
`RESEND_API_KEY` | You'll get that when you create a (free) [Resend](https://resend.com) account to handle emails.
`SQLITE_URL` | `file:./local.db` for development, `libsql://pages-cms-username.turso.io` for example if you use [Turso](https://turso.tech) (you should, Turso is great).
`SQLITE_AUTH_TOKEN` | Leave blank for development, otherwise use the token provided by [Turso](https://turso.tech) (if that's what you use).
`BASE_URL` | **OPTIONAL**. If you're deploying to Vercel or working locally, you won't need that. If you're deploying elsewhere, you'll need to specify the base URL for the app (e.g. `https://mycustomdomain.com`).### Local development
We assume you've already created the GitHub App and have a running tunnel for the GitHub App Webhook (using [ngrok](https://ngrok.com/) for example):
1. **Install the dependencies**: `npm install`
2. **Update your environment variables**: copy `.env.example` to `.env` and fill in the values according to your setting (see section above).
3. **Create the database**: `npm run db:migrate`
4. **Run it**: `npm run dev`### Deploy on Vercel
1. **Create a SQLite database**: I recommend using [Turso](https://turso.tech), because it's free (and pretty awesome)
2. **Deploy to Vercel**: at this stage you have 2 choices:
1. **Create a fork**: fork the `pages-cms/pages-cms` repo in your account and deploy that fork. This will allow you to get updates. **Make sure you define all of the environment variables listed above**.
2. **Use the deploy button**:
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fpages-cms%2Fpages-cms%2Ftree%2Fmain&project-name=pages-cms&repository-name=pages-cms&redirect-url=https%3A%2F%2Fpagescms.org&env=CRYPTO_KEY,GITHUB_APP_ID,GITHUB_APP_NAME,GITHUB_APP_PRIVATE_KEY,GITHUB_APP_WEBHOOK_SECRET,GITHUB_APP_CLIENT_ID,GITHUB_APP_CLIENT_SECRET,RESEND_API_KEY,SQLITE_URL,SQLITE_AUTH_TOKEN)3. **Update your GitHub OAuth app**: you'll probably need to go back to your GitHub App settings to update some of the settings once you have the Vercel URL (e.g. "Callback URL" and "Webhook URL").
### Self-host
There are [plenty of other options](https://nextjs.org/docs/app/building-your-application/deploying#self-hosting): Fly.io, Digital Ocean, Render, SST, etc.
## License
Everything in this repo is released under the [MIT License](LICENSE).