docs: small create-payload-app functionality correction

This commit is contained in:
Elliot DeNolf
2021-01-05 22:57:42 -05:00
parent 82d8d28b2c
commit f059d5b59a

View File

@@ -18,7 +18,7 @@ Payload requires the following software:
## Quickstart with create-payload-app
To quickly scaffold a new Payload app in the fastest way possible, you can use [create-payload-app](https://npmjs.com/package/create-payload-app). To do so, run `npx create-payload-app` in the folder where you'd like your project to be created and then follow the prompts. You can choose between scaffolding a TypeScript or JavaScript project.
To quickly scaffold a new Payload app in the fastest way possible, you can use [create-payload-app](https://npmjs.com/package/create-payload-app). To do so, run `npx create-payload-app` and follow the prompts. This will create a new folder with a functioning Payload application inside.
## From scratch
@@ -101,4 +101,3 @@ This is your Express app as shown above. Payload will tie into your existing `ap
After you've gotten this far, it's time to boot up Payload. At the command line, run `npm install` and then `node server.js` in your application's folder to start up your app and initialize Payload.
After it starts, you can go to `http://localhost:3000/admin` to create your first Payload user!