This is a headless CMS for an image gallery website, where you can upload images to Cloudinary, manage categories, tags, users and posts.
This project was built on top of Strapi. Strapi comes with a full-featured Command Line Interface (CLI) which lets you scaffold and manage your project in seconds.
Start by installing deps, with Node version 12-16
npm install
# or
yarn
A valid postgres DB is required, refer to config/database.js
for connection details.
Duplicate the .env.example
file to create a valid .env
file with the required API keys.
Most notably, a valid cloudinary API key is required to connect to the cloudinary APIs.
Start your CMS application with autoReload enabled. Learn more
npm run develop
# or
yarn develop
Start the CMS application with autoReload disabled. Learn more
npm run start
# or
yarn start
Build the admin panel. Learn more
npm run build
# or
yarn build