Beginner Question

Background: I am making a website for a club and thinking of using strapi (with react) so they can change the content them selves in the future. I have never used straip(or any other CMS) before.
Question: Our strapi panel and the project is hosted on local host. I can deploy the project by uploading its build folder on netlify. But how will the CMS get dpeloyed and how will they use it in future?

This topic has been created from a Discord post (1301986798871908400) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

heey strapi is a headless cms and a fully functioning backend with a database connected. you would need a front end that makes api calls to strapi to get content/execute logic/read and write from your database.

the CMS is part of strapi. you would deploy strapi and then route all incoming traffic to student.org/api to your strapi sevrer on port 1337.

Thanks mann​:saluting_face::saluting_face: