Article is deliberately minimal: title, slug, Markdown body, cover image and category. No Author content type — the administrator is the only writer. The bootstrap hook grants the Public role find/findOne on the two content types and disables self-registration, so the public API is read-only and the site has no front-end accounts.
26 lines
554 B
TypeScript
26 lines
554 B
TypeScript
import type { Core } from '@strapi/strapi';
|
|
|
|
const config = ({ env }: Core.Config.Shared.ConfigParams): Core.Config.Admin => ({
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET')!,
|
|
},
|
|
apiToken: {
|
|
salt: env('API_TOKEN_SALT')!,
|
|
},
|
|
transfer: {
|
|
token: {
|
|
salt: env('TRANSFER_TOKEN_SALT')!,
|
|
},
|
|
},
|
|
secrets: {
|
|
encryptionKey: env('ENCRYPTION_KEY')!,
|
|
},
|
|
flags: {
|
|
nps: env.bool('FLAG_NPS', true),
|
|
promoteEE: env.bool('FLAG_PROMOTE_EE', true),
|
|
docLinks: env.bool('FLAG_DOC_LINKS', true),
|
|
},
|
|
});
|
|
|
|
export default config;
|