This app can charge subscription and manage menbership and post blog automaticaly
- Next.js - Minimalistic framework for server-rendered React applications.
- Typescript - Superset of JavaScript which primarily provides optional static typing, classes and interfaces.
- Sass/Scss - CSS preprocessor, which adds special features such as variables, nested rules and mixins (sometimes referred to as syntactic sugar) into regular CSS.
- ESLint - The pluggable linting utility.
- Axios - A minimal and flexible Node.js web application framework that handles server-side rendering and integrates with Next.js.
- TailwindCss
- Material-ui
- supabase.js
- stripe.js
git clone https://github.com/edegp/anful.git
# and
npm i
First, create an account on Contentful.
After creating an account, create a new empty space from the dashboard and assign to it any name of your liking.
The content model defines the data structures of your application/websites. The structures are flexible and you can tailor them to your needs.
For this example you need to create a content model that defines an author and a post content type. You can create these two by running a script or by doing it manually to familiarize yourself with the Contentful user interface.
This project includes a setup script which you can use to set up the content model expected by the source code.
In your Contentful dashboard go to Settings > General Settings and copy the Space ID.
Next, go to Settings > API > Content management tokens and create a new token by clicking Generate personal token. This token has the same access rights as the logged in user. Do not share it publicly, you will only use it to set up your space and can delete it afterwards.
With the space ID and management access token at hand run the following command:
npx cross-env CONTENTFUL_SPACE_ID=YOUR_SPACE_ID CONTENTFUL_MANAGEMENT_TOKEN=XXX npm run setup
This command will create the needed content structures and set up your Contentful space ready to use. The output should look as follows:
> [email protected] setup /Users/stefan.judis/Projects/next.js/examples/cms-contentful
> node ./contentful/setup.js $CONTENTFUL_SPACE_ID $CONTENTFUL_MANAGEMENT_TOKEN
┌──────────────────────────────────────────────────┐
│ The following entities are going to be imported: │
├─────────────────────────────────┬────────────────┤
│ Content Types │ 2 │
├─────────────────────────────────┼────────────────┤
│ Editor Interfaces │ 2 │
├─────────────────────────────────┼────────────────┤
│ Locales │ 1 │
├─────────────────────────────────┼────────────────┤
│ Webhooks │ 0 │
├─────────────────────────────────┼────────────────┤
│ Entries │ 0 │
├─────────────────────────────────┼────────────────┤
│ Assets │ 0 │
└─────────────────────────────────┴────────────────┘
✔ Validating content-file
✔ Initialize client (1s)
✔ Checking if destination space already has any content and retrieving it (2s)
✔ Apply transformations to source data (1s)
✔ Push content to destination space
✔ Connecting to space (1s)
...
...
...
From your contentful space, go to Content model and add a new content type:
- Give it the Name
Author
, the Api Identifier should beauthor
Once the content model is saved, add these fields (you don't have to modify the settings unless specified):
name
- Text field (type short text). Field ID should be set toname
picture
- Media field (type one file). Field ID should be set topicture
Save the content type and continue.
From your contentful space, go to Content model and add another content type:
- Give it the Name
Post
, the Api Identifier should bepost
Next, add these fields (you don't have to modify the settings unless specified):
title
- Text field (type short text)content
- Rich text fieldexcerpt
- Text field (type Long text, full-text search)coverImage
- Media field (type one file)date
- Date and time fieldslug
- Text field. You can optionally go to the settings of this field, and under Appearance, select Slug to display it as a slug of thetitle
field.author
- Reference field (type one reference)
Save the content type and continue.
After setting up the content model (either manually or by running npm run setup
or yarn setup
), it should look as follows.
Content model overview
Go to the Content section in your space, then click on Add entry and select the Author content type:
- You just need 1 author entry.
- Use dummy data for the text.
- For the image, you can download one from Unsplash.
Next, create another entry with the content type Post:
- We recommend creating at least 2 post entries.
- Use dummy data for the text.
- For images, you can download them from Unsplash.
- Pick the author you created earlier.
Important: For each entry and asset, you need to click on Publish. If not, the entry will be in draft state.
From your contentful space, go to Settings > API keys. There will be an example Content delivery / preview token - you can use these API keys. (You may also create a new key.)
Next, copy the .env.local.example
file in this directory to .env.local
(which will be ignored by Git):
cp .env.local.example .env.local
Then set each variable on .env.local
:
-
CONTENTFUL_SPACE_ID
should be the Space ID field of your API Key -
CONTENTFUL_ACCESS_TOKEN
should be the Content Delivery API - access token field of your API key -
CONTENTFUL_PREVIEW_ACCESS_TOKEN
should be the Content Preview API - access token field of your API key -
CONTENTFUL_PREVIEW_SECRET
should be any value you want. It must be URL friendly as the dashboard will send it as a query parameter to enable preview mode -
ACCESS_TOKEN
facebook access token -
PAGE_ID
instagram pro account pageid -
other enviroment variables use stripe and supabase
Your
.env.local
file should look like this:
CONTENTFUL_SPACE_ID=...
CONTENTFUL_ACCESS_TOKEN=...
CONTENTFUL_PREVIEW_ACCESS_TOKEN=...
CONTENTFUL_PREVIEW_SECRET=...
npm install
npm run dev
# or
yarn install
yarn dev
Your blog should be up and running on http://localhost:3000!
npx vercel
# or
yarn vercel