Search code examples
node.jsdeploymentserverweb-deploymentstrapi

Is there a way to deploy Strapi project without admin panel?


As Strapi official docs point:

At the moment, deploying the Strapi Admin interface requires more than 1g of RAM.

Though in my project, I need only some basic actions with the server (like adding and viewing content), and I already do this via HTTP requests to api. So I would like to deploy only the "api" part itself and not admin panel logic. This way I can save resources & money. Is there a way to do it?


Solution

  • Please check Deploy the administration panel and the plugins on another server than the API

    You can just delete the build folder. You do not need an admin panel.

    Your REST or GraphQL API will work as the way it is.