Apostrophe CMS
Learn how to configure Apostrophe CMS for use with Filebase.
Apostrophe CMS is an open-source CMS product built using NodeJS that features an in-context editing service and a headless full-stack JavaScript environment. Apostrophe CMS supports Windows, macOS X, and Linux operating systems.
Read below to learn how to use Apostrophe CMS with Filebase.
apos create test-project
cd test-project
npm install
node app.js apostrophe-users:add admin admin
node app.js
modules: {
'apostrophe-attachments': {
uploadfs: {
backend: 's3',
secret: 'FILEBASE_ACCESS_KEY',
key: 'FILEBASE_SECRET_KEY',
endpoint: ‘s3.filebase.com’,
bucket: 'FILEBASE_BUCKET_NAME',
region: 'us-east-1'
}
}
}
Replace the following values to reflect your configuration:
- FILEBASE_ACCESS_KEY: Filebase Access Key
- FILEBASE_SECRET_KEY: Filebase Secret Key
- FILEBASE_BUCKET_NAME: Filebase Bucket Name
If you have any questions, please join our Discord server, or send us an email at [email protected]
Last modified 1yr ago