Strapi CMS

Setup the Strapi CMS

By Default the Strapi CMS is not included in the project. To setup the CMS follow the steps below.

  1. Create a new Strapi project
  2. Copy the contents of the strapi folder into the root of the new Strapi project
  3. Run npm install to install the dependencies
  4. Run npm run develop to start the Strapi server
  5. Open the Strapi admin panel at http://localhost:1337/admin
  6. Create a new user
  7. Create a new collection type called Article with the following fields:
    • Title (Text)
    • Content (Rich Text)
    • Author (Text)
    • Image (Media)
    • Date (Date)
  8. Create a new collection type called Category with the following fields:
    • Name (Text)
  9. Create a new collection type called Tag with the following fields:
    • Name (Text)
  10. Create a new collection type called User with the following fields:
    • Username (Text)
    • Email (Text)
    • Password (Password)
  11. Create a new collection type called Comment with the following fields:
    • Name (Text)
    • Email (Text)
    • Content (Text)
    • Article (Relation to Article)
  12. Create a new collection type called Settings with the following fields:

Strapi CMS