Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 712 Bytes

install.md

File metadata and controls

35 lines (22 loc) · 712 Bytes
id
install

Install

Prerequisites

Install Manifest

Run the following on your terminal from the root of your project:

npx add-manifest@latest

This will create a manifest/backend.yml file and add the required dependencies.

Then, serve the backend locally:

npm run manifest

You can now:
- See your Admin panel at http://localhost:1111 using the email [email protected] and the password admin
- Use your REST API at http://localhost:1111/api

:::tip

If you already have a frontend app, you can run the npx add-manifest command from your project root to include it in your repo.

:::