https://github.com/AlessioGr/relationshipnodeinownproject.git
A blank template for Payload to help you get up and running quickly. This repo may have been created by running npx create-payload-app@latest and selecting the "blank" template or by cloning this template on Payload Cloud.
See the official Examples Directory for details on how to use Payload in a variety of different ways.
To spin up the project locally, follow these steps:
cd YOUR_PROJECT_REPO && cp .env.example .envyarn && yarn dev (or docker-compose up, see Docker)open http://localhost:8000/admin to access the admin panel./src will be reflected in your app.
Alternatively, you can use Docker to spin up this project locally. To do so, follow these steps:
.env file in your project rootdocker-compose upTo run Payload in production, you need to build and serve the Admin panel. To do so, follow these steps:
payload build script by running yarn build or npm run build in your project root. This creates a ./build directory with a production-ready admin bundle.yarn serve or npm run serve to run Node in production and serve Payload from the ./build directory.The easiest way to deploy your project is to use Payload Cloud, a one-click hosting solution to deploy production-ready instances of your Payload apps directly from your GitHub repo. You can also deploy your app manually, check out the deployment documentation for full details.
If you have any issues or questions, reach out to us on Discord or start a GitHub discussion.