### What? Previously, the create-payload-app install would properly update the env vars in the new created `.env` file but kept outdated env vars in the `.env.example` file. I.e If selecting a `postgres` DB for the blank or website template: `.env` --> `DATABASE_URI` --> `postgres://postgres:<password>@127.0.0.1:5432/test-cpa` `.env.example` --> `DATABASE_URI` --> `mongodb://127.0.0.1/payload-template-blank-3-0` ### Now `.env` --> `DATABASE_URI` --> `postgres://postgres:<password>@127.0.0.1:5432/test-cpa` `.env.example` --> `DATABASE_URI` --> `postgres://postgres:<password>@127.0.0.1:5432/test-cpa`
Create Payload App
CLI for easily starting new Payload project
Usage
USAGE
$ npx create-payload-app
$ npx create-payload-app my-project
$ npx create-payload-app -n my-project -t website
OPTIONS
-n my-payload-app Set project name
-t template_name Choose specific template
Available templates:
blank Blank Template
website Website Template
ecommerce E-commerce Template
plugin Template for creating a Payload plugin
payload-demo Payload demo site at https://demo.payloadcms.com
payload-website Payload website CMS at https://payloadcms.com
--use-npm Use npm to install dependencies
--use-yarn Use yarn to install dependencies
--use-pnpm Use pnpm to install dependencies
--no-deps Do not install any dependencies
-h Show help