-
Notifications
You must be signed in to change notification settings - Fork 0
Manage Content
Stupid edited this page Mar 29, 2020
·
8 revisions
We use contentful to manage as our CMS.
Ask your manager/colleague for an invitation and you will get this:

Then we will discuss by different roles:
-
Find the
content_modelyou want to manage in theContent Typetab
-
Go to the
Contenttab and do what you want

Same as operators above.
- Find the
delivery_access_tokenorpreview_access_tokenin contentful

- Configure it in your local
.zshrcorenvironment.local.ts:
If you don't know what's
environment.local.ts, click here
# .zshrc
# HYPE env variables start
export NX_CONTENTFUL_PROD_DELIVERY_ACCESS_TOKEN=<delivery_access_token>
export NX_CONTENTFUL_PROD_PREVIEW_ACCESS_TOKEN=<preview_access_token>
# HYPE env variables endor
// **/environment.local.ts
contentful: {
host: 'cdn.contentful.com',
accessToken: '<delivery_access_token>',
},
// or
contentful: {
host: 'preview.contentful.com',
accessToken: '<preview_access_token>',
},