Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicholasgriffintn/press
A universal CMS for creating sites (WIP)
https://github.com/nicholasgriffintn/press
Last synced: about 1 month ago
JSON representation
A universal CMS for creating sites (WIP)
- Host: GitHub
- URL: https://github.com/nicholasgriffintn/press
- Owner: nicholasgriffintn
- License: mit
- Created: 2023-06-24T17:02:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-25T16:55:03.000Z (3 months ago)
- Last Synced: 2024-08-25T18:03:11.975Z (3 months ago)
- Language: TypeScript
- Homepage: https://press.nicholasgriffin.dev
- Size: 1.57 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Press
Press aims to be a universal CMS that you can use for creating content for your site.
With tenant capabilities, it allows you to create content for a number of sites with a multi-user, multi-site structure. Alongside that, it fully supports site deployments and site management with CloudFlare and Vercel.
## Tech
- [Using the Next.JS Framework (App Directory)](https://nextjs.org/)
- [Components from shadcn](https://ui.shadcn.com/)
- [Auth with NextAuth.js](https://next-auth.js.org/)
- [Hosted on Vercel](https://vercel.com/)
- [Emails with Resend](https://resend.com/)
- [Database with PlanetScale](https://planetscale.com/)## TODO
- [x] Implement models for CMS
- [ ] Implement multi tenant structure
- [ ] Move billing to tenants
- [ ] Implement audit logs
- [ ] Implement flags
- [ ] Implement content creation with statuses, types and workflows
- [ ] Implement simple content editor
- [ ] Implement custom templates with custom fields
- [ ] Implement sites with deployment and management
- [ ] Implement CloudFlare
- [ ] Implement Vercel
- [ ] Implement forms
- [ ] Implement content upload
- [ ] Implement user configuration
- [ ] Implement sign in and device tracking
- [ ] Implement delete account and site
- [ ] Implement SAR
- [ ] Implement external integrations
- [ ] Implement content compliance tracking### Build
To build all apps and packages, run the following command:
```
cd my-turborepo
pnpm build
```### Develop
To develop all apps and packages, run the following command:
```
cd my-turborepo
pnpm dev
```### Remote Caching
To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following command:
```
npx turbo login
```This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:
```
npx turbo link
```